UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.1 kB
/** * **aux4** - elevate your imagination * * @domain `aux4.io` * @programs `aux4` * @version `5.1.2` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install aux4` * @name `aux4` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.aux4 * // Or access via domain * const samePkg = pantry.aux4io * console.log(pkg === samePkg) // true * console.log(pkg.name) // "aux4" * console.log(pkg.description) // "elevate your imagination" * console.log(pkg.programs) // ["aux4"] * console.log(pkg.versions[0]) // "5.1.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/aux4-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const aux4Package: { /** * The display name of this package. */ name: 'aux4'; /** * The canonical domain name for this package. */ domain: 'aux4.io'; /** * Brief description of what this package does. */ description: 'elevate your imagination'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/aux4.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install aux4'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['aux4']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.1.2', '5.1.0', '5.0.14', '5.0.11', '5.0.10', '5.0.9', '5.0.8', '5.0.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) aux4 -- $SHELL -i'; launchpadInstallCommand: 'launchpad install aux4' }; export type Aux4Package = typeof aux4Package