ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.17 kB
TypeScript
/**
* **carapace** - Multi-shell multi-command argument completer
*
* @domain `carapace.sh`
* @programs `carapace`
* @version `1.3.3` (12 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install carapace`
* @aliases `carapace`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.carapace
* // Or access via domain
* const samePkg = pantry.carapacesh
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "carapace.sh"
* console.log(pkg.description) // "Multi-shell multi-command argument completer"
* console.log(pkg.programs) // ["carapace"]
* console.log(pkg.versions[0]) // "1.3.3" (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.sh';
/**
* 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.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 ['carapace']
};
export type CarapacePackage = typeof carapacePackage