UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

60 lines 1.88 kB
/** * **gnu.org/readline** - pkgx package * * @domain `gnu.org/readline` * @version `8.3.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/readline` * @dependencies `invisible-island.net/ncurses^6` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorgreadline * console.log(pkg.name) // "gnu.org/readline" * console.log(pkg.versions[0]) // "8.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/readline.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorgreadlinePackage: { /** * The display name of this package. */ name: 'gnu.org/readline'; /** * The canonical domain name for this package. */ domain: 'gnu.org/readline'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/readline/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/readline'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['invisible-island.net/ncurses^6']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['8.3.0', '8.2.13', '8.2.0', '8.1.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/readline -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/readline' }; export type GnuorgreadlinePackage = typeof gnuorgreadlinePackage