UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.34 kB
/** * **pipx** - Execute binaries from Python packages in isolated environments * * @domain `pypa.github.io/pipx` * @programs `pipx` * @version `1.7.1` (15 versions available) * @versions From newest version to oldest. * * @install `launchpad install pipx` * @name `pipx` * @dependencies `pkgx.sh^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.pipx * // Or access via domain * const samePkg = pantry.pypagithubiopipx * console.log(pkg === samePkg) // true * console.log(pkg.name) // "pipx" * console.log(pkg.description) // "Execute binaries from Python packages in isolat..." * console.log(pkg.programs) // ["pipx"] * console.log(pkg.versions[0]) // "1.7.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/pypa-github-io/pipx.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pipxPackage: { /** * The display name of this package. */ name: 'pipx'; /** * The canonical domain name for this package. */ domain: 'pypa.github.io/pipx'; /** * Brief description of what this package does. */ description: 'Execute binaries from Python packages in isolated environments'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pypa.github.io/pipx/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pipx'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pipx']; 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 ['1.7.1', '1.7.0', '1.6.0', '1.5.0', '1.4.3', '1.4.2', '1.4.1', '1.4.0', '1.3.3', '1.3.2', '1.3.1', '1.3.0', '1.2.1', '1.2.0', '1.1.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type PipxPackage = typeof pipxPackage