/** * **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.3` (17 versions available) * @versions From newest version to oldest. * * @install `launchpad install packer.io` * @homepage https://packer.io * @buildDependencies `go.dev@^1.18` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.packerio * 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.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/packer-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const packerioPackage: { /** * 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: 'https://packer.io'; githubUrl: 'https://github.com/hashicorp/packer'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install packer.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +packer.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install packer.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['packer']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.18']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.14.3', '1.14.2', '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']; aliases: readonly [] }; export type PackerioPackage = typeof packerioPackage