/** * **onig-config** - Regular expressions library * * @domain `github.com/kkos/oniguruma` * @programs `onig-config` * @version `6.9.10` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/kkos/oniguruma` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomkkosoniguruma * console.log(pkg.name) // "onig-config" * console.log(pkg.description) // "Regular expressions library" * console.log(pkg.programs) // ["onig-config"] * console.log(pkg.versions[0]) // "6.9.10" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/kkos/oniguruma.md * @see https://ts-pkgx.netlify.app/usage */ export declare const onigurumaPackage: { /** * The display name of this package. */ name: 'onig-config'; /** * The canonical domain name for this package. */ domain: 'github.com/kkos/oniguruma'; /** * Brief description of what this package does. */ description: 'Regular expressions library'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/kkos/oniguruma/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/kkos/oniguruma'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/kkos/oniguruma'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/kkos/oniguruma -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/kkos/oniguruma'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['onig-config']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['6.9.10', '6.9.9', '6.9.8']; aliases: readonly [] }; export type OnigurumaPackage = typeof onigurumaPackage