UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.29 kB
/** * **invoke** - Pythonic task management & command execution. * * @domain `pyinvoke.org` * @programs `invoke` * @version `2.2.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install invoke` * @name `invoke` * @dependencies `pkgx.sh^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.invoke * // Or access via domain * const samePkg = pantry.pyinvokeorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "invoke" * console.log(pkg.description) // "Pythonic task management & command execution." * console.log(pkg.programs) // ["invoke"] * console.log(pkg.versions[0]) // "2.2.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/pyinvoke-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const invokePackage: { /** * The display name of this package. */ name: 'invoke'; /** * The canonical domain name for this package. */ domain: 'pyinvoke.org'; /** * Brief description of what this package does. */ description: 'Pythonic task management & command execution.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pyinvoke.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install invoke'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['invoke']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['pkgx.sh^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.2.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) invoke -- $SHELL -i'; launchpadInstallCommand: 'launchpad install invoke' }; export type InvokePackage = typeof invokePackage