ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.43 kB
TypeScript
/**
* **argbash** - Bash argument parsing code generator
*
* @domain `argbash.dev`
* @programs `argbash`, `argbash-init`, `argbash-1to2`
* @version `2.11.0` (2 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install argbash`
* @name `argbash`
* @dependencies `gnu.org/bash>=3`, `gnu.org/autoconf`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.argbash
* // Or access via domain
* const samePkg = pantry.argbashdev
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "argbash"
* console.log(pkg.description) // "Bash argument parsing code generator"
* console.log(pkg.programs) // ["argbash", "argbash-init", ...]
* console.log(pkg.versions[0]) // "2.11.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/argbash-dev.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const argbashPackage: {
/**
* The display name of this package.
*/
name: 'argbash';
/**
* The canonical domain name for this package.
*/
domain: 'argbash.dev';
/**
* Brief description of what this package does.
*/
description: 'Bash argument parsing code generator';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/argbash.dev/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install argbash';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['argbash', 'argbash-init', 'argbash-1to2'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['gnu.org/bash>=3', 'gnu.org/autoconf'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.11.0', '2.10.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +argbash.dev -- $SHELL -i';
launchpadInstallCommand: 'launchpad install argbash'
};
export type ArgbashPackage = typeof argbashPackage