UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

79 lines 2.97 kB
/** * **pipenv** - Python Development Workflow for Humans. * * @domain `pipenv.pypa.io` * @programs `pipenv` * @version `3000.0.0` (48 versions available) * @versions From newest version to oldest. * * @install `launchpad install pipenv` * @aliases `pipenv` * @dependencies `pkgx.sh^1` * @companions `pip.pypa.io` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.pipenv * // Or access via domain * const samePkg = pantry.pipenvpypaio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "pipenv.pypa.io" * console.log(pkg.description) // "Python Development Workflow for Humans." * console.log(pkg.programs) // ["pipenv"] * console.log(pkg.versions[0]) // "3000.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/pipenv-pypa-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pipenvPackage: { /** * The display name of this package. */ name: 'pipenv.pypa.io'; /** * The canonical domain name for this package. */ domain: 'pipenv.pypa.io'; /** * Brief description of what this package does. */ description: 'Python Development Workflow for Humans.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pipenv.pypa.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pipenv'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pipenv']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['pip.pypa.io']; /** * 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 ['3000.0.0', '2025.0.3', '2025.0.2', '2025.0.1', '2025.0.0', '2024.4.1', '2024.4.0', '2024.3.1', '2024.3.0', '2024.2.0', '2024.1.0', '2024.0.3', '2024.0.2', '2024.0.1', '2024.0.0', '2023.12.1', '2023.12.0', '2023.11.17', '2023.11.15', '2023.11.14', '2023.10.24', '2023.10.3', '2023.9.8', '2023.9.7', '2023.9.1', '2023.8.28', '2023.8.26', '2023.8.25', '2023.8.23', '2023.8.22', '2023.8.21', '2023.8.20', '2023.8.19', '2023.7.23', '2023.7.9', '2023.7.4', '2023.7.3', '2023.7.1', '2023.6.26', '2023.6.18', '2023.6.12', '2023.6.11', '2023.6.2', '2023.5.19', '2023.4.29', '2023.4.20', '2023.2.18', '2023.2.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['pipenv'] }; export type PipenvPackage = typeof pipenvPackage