UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.29 kB
/** * **carapace** - Multi-shell multi-command argument completer * * @domain `carapace.sh` * @programs `carapace` * @version `1.4.1` (14 versions available) * @versions From newest version to oldest. * * @install `launchpad install carapace` * @name `carapace` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.carapace * // Or access via domain * const samePkg = pantry.carapacesh * console.log(pkg === samePkg) // true * console.log(pkg.name) // "carapace" * console.log(pkg.description) // "Multi-shell multi-command argument completer" * console.log(pkg.programs) // ["carapace"] * console.log(pkg.versions[0]) // "1.4.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/carapace-sh.md * @see https://ts-pkgx.netlify.app/usage */ export declare const carapacePackage: { /** * The display name of this package. */ name: 'carapace'; /** * The canonical domain name for this package. */ domain: 'carapace.sh'; /** * Brief description of what this package does. */ description: 'Multi-shell multi-command argument completer'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/carapace.sh/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install carapace'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['carapace']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.4.1', '1.4.0', '1.3.3', '1.3.2', '1.3.1', '1.3.0', '1.2.1', '1.2.0', '1.1.1', '1.1.0', '1.0.7', '1.0.6', '1.0.5', '1.0.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) carapace -- $SHELL -i'; launchpadInstallCommand: 'launchpad install carapace' }; export type CarapacePackage = typeof carapacePackage