UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.22 kB
/** * **bash** - Bourne-Again SHell, a UNIX command interpreter * * @domain `gnu.org/bash` * @programs `bash`, `bashbug` * @version `5.3.0` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install bash` * @name `bash` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.bash * // Or access via domain * const samePkg = pantry.gnuorgbash * console.log(pkg === samePkg) // true * console.log(pkg.name) // "bash" * console.log(pkg.description) // "Bourne-Again SHell, a UNIX command interpreter" * console.log(pkg.programs) // ["bash", "bashbug"] * console.log(pkg.versions[0]) // "5.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/bash.md * @see https://ts-pkgx.netlify.app/usage */ export declare const bashPackage: { /** * The display name of this package. */ name: 'bash'; /** * The canonical domain name for this package. */ domain: 'gnu.org/bash'; /** * Brief description of what this package does. */ description: 'Bourne-Again SHell, a UNIX command interpreter'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/bash/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install bash'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['bash', 'bashbug']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.3.0', '5.2.37', '5.2.32', '5.2.21', '5.2.15', '5.1.16']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/bash -- $SHELL -i'; launchpadInstallCommand: 'launchpad install bash' }; export type BashPackage = typeof bashPackage