UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.59 kB
/** * **fish** - User-friendly command-line shell for UNIX-like operating systems * * @domain `fishshell.com` * @programs `fish`, `fish_indent`, `fish_key_reader` * @version `4.0.2` (11 versions available) * @versions From newest version to oldest. * * @install `launchpad install fish` * @name `fish` * @dependencies `gnu.org/gettext`, `invisible-island.net/ncurses>=6.0` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.fish * // Or access via domain * const samePkg = pantry.fishshellcom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "fish" * console.log(pkg.description) // "User-friendly command-line shell for UNIX-like ..." * console.log(pkg.programs) // ["fish", "fish_indent", ...] * console.log(pkg.versions[0]) // "4.0.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/fishshell-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const fishPackage: { /** * The display name of this package. */ name: 'fish'; /** * The canonical domain name for this package. */ domain: 'fishshell.com'; /** * Brief description of what this package does. */ description: 'User-friendly command-line shell for UNIX-like operating systems'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/fishshell.com/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install fish'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['fish', 'fish_indent', 'fish_key_reader']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnu.org/gettext', 'invisible-island.net/ncurses>=6.0']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.0.2', '4.0.1', '4.0.0', '3.7.1', '3.7.0', '3.6.4', '3.6.3', '3.6.2', '3.6.1', '3.6.0', '3.5.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +fishshell.com -- $SHELL -i'; launchpadInstallCommand: 'launchpad install fish' }; export type FishPackage = typeof fishPackage