UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

70 lines 2.32 kB
/** * **python-click** - Python composable command line interface toolkit * * @domain `palletsprojects.com/click` * @version `8.2.2` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install python-click` * @name `python-click` * @dependencies `python.org>=3.11` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.pythonclick * // Or access via domain * const samePkg = pantry.palletsprojectscomclick * console.log(pkg === samePkg) // true * console.log(pkg.name) // "python-click" * console.log(pkg.description) // "Python composable command line interface toolkit" * console.log(pkg.versions[0]) // "8.2.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/palletsprojects-com/click.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pythonclickPackage: { /** * The display name of this package. */ name: 'python-click'; /** * The canonical domain name for this package. */ domain: 'palletsprojects.com/click'; /** * Brief description of what this package does. */ description: 'Python composable command line interface toolkit'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/palletsprojects.com/click/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pallets/click'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install python-click'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org>=3.11']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['8.2.2', '8.2.1', '8.2.0', '8.1.8', '8.1.7']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +palletsprojects.com/click -- $SHELL -i'; launchpadInstallCommand: 'launchpad install python-click' }; export type PythonclickPackage = typeof pythonclickPackage