UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 2.05 kB
/** * **gnu.org/bison** - Parser generator * * @domain `gnu.org/bison` * @programs `bison`, `yacc` * @version `3.8.2` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/bison` * @dependencies `gnu.org/m4@1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorgbison * console.log(pkg.name) // "gnu.org/bison" * console.log(pkg.description) // "Parser generator" * console.log(pkg.programs) // ["bison", "yacc"] * console.log(pkg.versions[0]) // "3.8.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/bison.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorgbisonPackage: { /** * The display name of this package. */ name: 'gnu.org/bison'; /** * The canonical domain name for this package. */ domain: 'gnu.org/bison'; /** * Brief description of what this package does. */ description: 'Parser generator'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/bison/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnu.org/bison'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['bison', 'yacc']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnu.org/m4@1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.8.2']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/bison -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/bison' }; export type GnuorgbisonPackage = typeof gnuorgbisonPackage