UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.5 kB
/** * **corepack** - Platform built on V8 to build network applications * * @domain `nodejs.org/corepack` * @programs `corepack` * @version `0.34.0` (13 versions available) * @versions From newest version to oldest. * * @install `launchpad install corepack` * @name `corepack` * @dependencies `nodejs.org^20` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.corepack * // Or access via domain * const samePkg = pantry.nodejsorgcorepack * console.log(pkg === samePkg) // true * console.log(pkg.name) // "corepack" * console.log(pkg.description) // "Platform built on V8 to build network applications" * console.log(pkg.programs) // ["corepack"] * console.log(pkg.versions[0]) // "0.34.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/nodejs-org/corepack.md * @see https://ts-pkgx.netlify.app/usage */ export declare const corepackPackage: { /** * The display name of this package. */ name: 'corepack'; /** * The canonical domain name for this package. */ domain: 'nodejs.org/corepack'; /** * Brief description of what this package does. */ description: 'Platform built on V8 to build network applications'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/nodejs.org/corepack/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install corepack'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['corepack']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['nodejs.org^20']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.34.0', '0.33.0', '0.32.0', '0.31.0', '0.30.0', '0.29.4', '0.29.3', '0.29.2', '0.28.2', '0.28.1', '0.28.0', '0.27.0', '0.26.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) corepack -- $SHELL -i'; launchpadInstallCommand: 'launchpad install corepack' }; export type CorepackPackage = typeof corepackPackage