UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.42 kB
/** * **packer** - Packer is a tool for creating identical machine images for multiple platforms from a single source configuration. * * @domain `packer.io` * @programs `packer` * @version `1.14.1` (15 versions available) * @versions From newest version to oldest. * * @install `launchpad install packer` * @name `packer` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.packer * // Or access via domain * const samePkg = pantry.packerio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "packer" * console.log(pkg.description) // "Packer is a tool for creating identical machine..." * console.log(pkg.programs) // ["packer"] * console.log(pkg.versions[0]) // "1.14.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/packer-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const packerPackage: { /** * The display name of this package. */ name: 'packer'; /** * The canonical domain name for this package. */ domain: 'packer.io'; /** * Brief description of what this package does. */ description: 'Packer is a tool for creating identical machine images for multiple platforms from a single source configuration.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/packer.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 packer'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['packer']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.14.1', '1.14.0', '1.13.1', '1.13.0', '1.12.0', '1.11.2', '1.11.1', '1.11.0', '1.10.3', '1.10.2', '1.10.1', '1.9.5', '1.9.4', '1.9.3', '1.9.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) packer -- $SHELL -i'; launchpadInstallCommand: 'launchpad install packer' }; export type PackerPackage = typeof packerPackage