UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

68 lines 2.22 kB
/** * **python-click** - Python composable command line interface toolkit * * @domain `palletsprojects.com/click` * @version `8.2.1` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install +palletsprojects.com/click -- $SHELL -i` * @aliases `python-click` * @dependencies `python.org>=3.11` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.pythonclick * // Or access via domain * const samePkg = pantry.palletsprojectscomclick * console.log(pkg === samePkg) // true * console.log(pkg.name) // "click" * console.log(pkg.description) // "Python composable command line interface toolkit" * console.log(pkg.versions[0]) // "8.2.1" (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: '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 +palletsprojects.com/click -- $SHELL -i'; 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.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 ['python-click'] }; export type PythonclickPackage = typeof pythonclickPackage