/** * **kpt** - Automate Kubernetes Configuration Editing * * @domain `kpt.dev` * @programs `kpt` * @version `0.39.3` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install kpt.dev` * @homepage https://kpt.dev * @dependencies `git-scm.org` * @buildDependencies `go.dev@^1.14` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.kptdev * console.log(pkg.name) // "kpt" * console.log(pkg.description) // "Automate Kubernetes Configuration Editing" * console.log(pkg.programs) // ["kpt"] * console.log(pkg.versions[0]) // "0.39.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/kpt-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const kptdevPackage: { /** * The display name of this package. */ name: 'kpt'; /** * The canonical domain name for this package. */ domain: 'kpt.dev'; /** * Brief description of what this package does. */ description: 'Automate Kubernetes Configuration Editing'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/kpt.dev/package.yml'; homepageUrl: 'https://kpt.dev'; githubUrl: 'https://github.com/kptdev/kpt'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install kpt.dev'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +kpt.dev -- $SHELL -i'; launchpadInstallCommand: 'launchpad install kpt.dev'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['kpt']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['git-scm.org']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.14']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.39.3']; aliases: readonly [] }; export type KptdevPackage = typeof kptdevPackage