/** * **pack** - CLI for building apps using Cloud Native Buildpacks * * @domain `buildpacks.io` * @programs `pack` * @version `0.39.0` (16 versions available) * @versions From newest version to oldest. * * @install `launchpad install buildpacks.io` * @homepage https://buildpacks.io * @buildDependencies `go.dev@~1.24` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.buildpacksio * console.log(pkg.name) // "pack" * console.log(pkg.description) // "CLI for building apps using Cloud Native Buildp..." * console.log(pkg.programs) // ["pack"] * console.log(pkg.versions[0]) // "0.39.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/buildpacks-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const buildpacksioPackage: { /** * The display name of this package. */ name: 'pack'; /** * The canonical domain name for this package. */ domain: 'buildpacks.io'; /** * Brief description of what this package does. */ description: 'CLI for building apps using Cloud Native Buildpacks'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/buildpacks.io/package.yml'; homepageUrl: 'https://buildpacks.io'; githubUrl: 'https://github.com/buildpacks/pack'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install buildpacks.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +buildpacks.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install buildpacks.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pack']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@~1.24']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.39.0', '0.38.2', '0.38.1', '0.38.0', '0.37.0', '0.36.4', '0.36.3', '0.36.2', '0.36.1', '0.36.0', '0.35.1', '0.35.0', '0.34.2', '0.34.1', '0.34.0', '0.33.2']; aliases: readonly [] }; export type BuildpacksioPackage = typeof buildpacksioPackage