UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

70 lines 2.05 kB
/** * **vfkit** - pkgx package * * @domain `github.com/crc-org/vfkit` * @programs `vfkit` * @version `0.6.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install vfkit` * @name `vfkit` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.vfkit * // Or access via domain * const samePkg = pantry.githubcomcrcorgvfkit * console.log(pkg === samePkg) // true * console.log(pkg.name) // "vfkit" * console.log(pkg.programs) // ["vfkit"] * console.log(pkg.versions[0]) // "0.6.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/crc-org/vfkit.md * @see https://ts-pkgx.netlify.app/usage */ export declare const vfkitPackage: { /** * The display name of this package. */ name: 'vfkit'; /** * The canonical domain name for this package. */ domain: 'github.com/crc-org/vfkit'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/crc-org/vfkit/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install vfkit'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['vfkit']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.6.1', '0.6.0', '0.5.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) vfkit -- $SHELL -i'; launchpadInstallCommand: 'launchpad install vfkit' }; export type VfkitPackage = typeof vfkitPackage