/** * **kubectl-krew** - 📦 Find and install kubectl plugins * * @domain `krew.sigs.k8s.io` * @programs `kubectl-krew` * @version `0.4.5` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install krew.sigs.k8s.io` * @homepage https://sigs.k8s.io/krew/ * @dependencies `git-scm.org` * @buildDependencies `go.dev@^1.21` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.krewsigsk8sio * console.log(pkg.name) // "kubectl-krew" * console.log(pkg.description) // "📦 Find and install kubectl plugins" * console.log(pkg.programs) // ["kubectl-krew"] * console.log(pkg.versions[0]) // "0.4.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/krew-sigs-k8s-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const krewsigsk8sioPackage: { /** * The display name of this package. */ name: 'kubectl-krew'; /** * The canonical domain name for this package. */ domain: 'krew.sigs.k8s.io'; /** * Brief description of what this package does. */ description: '📦 Find and install kubectl plugins'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/krew.sigs.k8s.io/package.yml'; homepageUrl: 'https://sigs.k8s.io/krew/'; githubUrl: 'https://github.com/kubernetes-sigs/krew'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install krew.sigs.k8s.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +krew.sigs.k8s.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install krew.sigs.k8s.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['kubectl-krew']; 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.21']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.4.5', '0.4.4']; aliases: readonly [] }; export type Krewsigsk8sioPackage = typeof krewsigsk8sioPackage