UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.53 kB
/** * **poetry** - Python packaging and dependency management made easy * * @domain `python-poetry.org` * @programs `poetry` * @version `2.1.4` (22 versions available) * @versions From newest version to oldest. * * @install `launchpad install poetry` * @name `poetry` * @dependencies `pkgx.sh^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.poetry * // Or access via domain * const samePkg = pantry.pythonpoetryorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "poetry" * console.log(pkg.description) // "Python packaging and dependency management made..." * console.log(pkg.programs) // ["poetry"] * console.log(pkg.versions[0]) // "2.1.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/python-poetry-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const poetryPackage: { /** * The display name of this package. */ name: 'poetry'; /** * The canonical domain name for this package. */ domain: 'python-poetry.org'; /** * Brief description of what this package does. */ description: 'Python packaging and dependency management made easy'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/python-poetry.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 poetry'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['poetry']; 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.1.4', '2.1.3', '2.1.2', '2.1.1', '2.1.0', '2.0.1', '2.0.0', '1.8.5', '1.8.4', '1.8.3', '1.8.2', '1.8.1', '1.8.0', '1.7.1', '1.7.0', '1.6.1', '1.6.0', '1.5.1', '1.5.0', '1.4.2', '1.4.0', '1.3.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) poetry -- $SHELL -i'; launchpadInstallCommand: 'launchpad install poetry' }; export type PoetryPackage = typeof poetryPackage