ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.12 kB
TypeScript
/**
* **argc** - A Bash CLI framework, also a Bash command runner.
*
* @domain `crates.io/argc`
* @programs `argc`
* @version `1.22.0` (10 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install argc`
* @name `argc`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.argc
* // Or access via domain
* const samePkg = pantry.cratesioargc
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "argc"
* console.log(pkg.description) // "A Bash CLI framework, also a Bash command runner."
* console.log(pkg.programs) // ["argc"]
* console.log(pkg.versions[0]) // "1.22.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/argc.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const argcPackage: {
/**
* The display name of this package.
*/
name: 'argc';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/argc';
/**
* Brief description of what this package does.
*/
description: 'A Bash CLI framework, also a Bash command runner.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/argc/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install argc';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['argc'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.22.0', '1.21.1', '1.21.0', '1.20.1', '1.20.0', '1.19.0', '1.18.0', '1.17.0', '1.16.0', '1.15.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type ArgcPackage = typeof argcPackage