UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

66 lines 1.97 kB
/** * **gnu.org/bc** - pkgx package * * @domain `gnu.org/bc` * @programs `bc`, `dc` * @version `1.8.2` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/bc` * @dependencies `github.com/westes/flex^2.6` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorgbc * console.log(pkg.name) // "gnu.org/bc" * console.log(pkg.programs) // ["bc", "dc"] * console.log(pkg.versions[0]) // "1.8.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/bc.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorgbcPackage: { /** * The display name of this package. */ name: 'gnu.org/bc'; /** * The canonical domain name for this package. */ domain: 'gnu.org/bc'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/bc/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/bc'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['bc', 'dc']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['github.com/westes/flex^2.6']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.8.2', '1.8.1', '1.8.0', '1.7.1']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/bc -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/bc' }; export type GnuorgbcPackage = typeof gnuorgbcPackage