ts-pkgx
Version:
A library & CLI for managing packages
81 lines • 2.67 kB
TypeScript
/**
* **bashly** - Bash command line framework and CLI generator
*
* @domain `bashly.dannyb.co`
* @programs `bashly`
* @version `1.3.1` (16 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install bashly`
* @name `bashly`
* @dependencies `ruby-lang.org^3.1`, `rubygems.org`
* @companions `gnu.org/bash`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.bashly
* // Or access via domain
* const samePkg = pantry.bashlydannybco
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "bashly"
* console.log(pkg.description) // "Bash command line framework and CLI generator"
* console.log(pkg.programs) // ["bashly"]
* console.log(pkg.versions[0]) // "1.3.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/bashly-dannyb-co.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const bashlyPackage: {
/**
* The display name of this package.
*/
name: 'bashly';
/**
* The canonical domain name for this package.
*/
domain: 'bashly.dannyb.co';
/**
* Brief description of what this package does.
*/
description: 'Bash command line framework and CLI generator';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/bashly.dannyb.co/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install bashly';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['bashly'];
/**
* Related packages that work well with this package.
* Consider installing these for enhanced functionality.
*/
companions: readonly ['gnu.org/bash'];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['ruby-lang.org^3.1', 'rubygems.org'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.3.1', '1.2.13', '1.2.12', '1.2.11', '1.2.10', '1.2.9', '1.2.8', '1.2.7', '1.2.6', '1.2.5', '1.2.4', '1.2.3', '1.2.2', '1.2.1', '1.2.0', '1.1.10'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) bashly -- $SHELL -i';
launchpadInstallCommand: 'launchpad install bashly'
};
export type BashlyPackage = typeof bashlyPackage