/** * **bashly** - Bash command line framework and CLI generator * * @domain `bashly.dannyb.co` * @programs `bashly` * @version `1.3.4` (19 versions available) * @versions From newest version to oldest. * * @install `launchpad install bashly.dannyb.co` * @homepage https://bashly.dev * @dependencies `ruby-lang.org^3.1`, `rubygems.org` * @buildDependencies `rubygems.org` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.bashlydannybco * 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.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/bashly-dannyb-co.md * @see https://ts-pkgx.netlify.app/usage */ export declare const bashlydannybcoPackage: { /** * 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: 'https://bashly.dev'; githubUrl: 'https://github.com/DannyBen/bashly'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install bashly.dannyb.co'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +bashly.dannyb.co -- $SHELL -i'; launchpadInstallCommand: 'launchpad install bashly.dannyb.co'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['bashly']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['ruby-lang.org^3.1', 'rubygems.org']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['rubygems.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.4', '1.3.3', '1.3.2', '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']; aliases: readonly [] }; export type BashlydannybcoPackage = typeof bashlydannybcoPackage