/** * **kube** - Tool that can switch between kubectl contexts easily and create aliases * * @domain `kubectx.dev` * @programs `kubectx`, `kubens` * @version `0.9.5` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install kubectx.dev` * @homepage https://kubectx.dev * @dependencies `github.com/junegunn/fzf` * @buildDependencies `go.dev@^1.20` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.kubectxdev * console.log(pkg.name) // "kube" * console.log(pkg.description) // "Tool that can switch between kubectl contexts e..." * console.log(pkg.programs) // ["kubectx", "kubens"] * console.log(pkg.versions[0]) // "0.9.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/kubectx-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const kubectxdevPackage: { /** * The display name of this package. */ name: 'kube'; /** * The canonical domain name for this package. */ domain: 'kubectx.dev'; /** * Brief description of what this package does. */ description: 'Tool that can switch between kubectl contexts easily and create aliases'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/kubectx.dev/package.yml'; homepageUrl: 'https://kubectx.dev'; githubUrl: 'https://github.com/ahmetb/kubectx'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install kubectx.dev'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +kubectx.dev -- $SHELL -i'; launchpadInstallCommand: 'launchpad install kubectx.dev'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['kubectx', 'kubens']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['github.com/junegunn/fzf']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.20']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.9.5', '0.9.4']; aliases: readonly [] }; export type KubectxdevPackage = typeof kubectxdevPackage