UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.53 kB
/** * **pyproject-build** - A simple, correct Python build frontend * * @domain `github.com/pypa/build` * @programs `pyproject-build` * @version `1.3.0` (10 versions available) * @versions From newest version to oldest. * * @install `launchpad install pyproject-build` * @name `pyproject-build` * @dependencies `pkgx.sh^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.pyprojectbuild * // Or access via domain * const samePkg = pantry.githubcompypabuild * console.log(pkg === samePkg) // true * console.log(pkg.name) // "pyproject-build" * console.log(pkg.description) // "A simple, correct Python build frontend" * console.log(pkg.programs) // ["pyproject-build"] * console.log(pkg.versions[0]) // "1.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/pypa/build.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pyprojectbuildPackage: { /** * The display name of this package. */ name: 'pyproject-build'; /** * The canonical domain name for this package. */ domain: 'github.com/pypa/build'; /** * Brief description of what this package does. */ description: 'A simple, correct Python build frontend'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/pypa/build/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pyproject-build'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pyproject-build']; 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.3.0', '1.2.2', '1.2.1', '1.2.0', '1.1.1', '1.1.0', '1.0.3', '1.0.1', '1.0.0', '0.10.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) pyproject-build -- $SHELL -i'; launchpadInstallCommand: 'launchpad install pyproject-build' }; export type PyprojectbuildPackage = typeof pyprojectbuildPackage