UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.29 kB
/** * **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 kubectl-krew` * @aliases `kubectl-krew` * @dependencies `git-scm.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.kubectlkrew * // Or access via domain * const samePkg = pantry.krewsigsk8sio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "krew.sigs.k8s.io" * 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 kubectlkrewPackage: { /** * The display name of this package. */ name: 'krew.sigs.k8s.io'; /** * 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: ''; githubUrl: 'https://github.com/kubernetes-sigs/krew'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install kubectl-krew'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['kubectl-krew']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['git-scm.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.4.5', '0.4.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['kubectl-krew'] }; export type KubectlkrewPackage = typeof kubectlkrewPackage