/** * **kubecm** - Manage your kubeconfig more easily. * * @domain `kubecm.cloud` * @programs `kubecm` * @version `0.33.3` (13 versions available) * @versions From newest version to oldest. * * @install `launchpad install kubecm.cloud` * @homepage https://kubecm.cloud * @buildDependencies `go.dev@^1.22` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.kubecmcloud * console.log(pkg.name) // "kubecm" * console.log(pkg.description) // "Manage your kubeconfig more easily." * console.log(pkg.programs) // ["kubecm"] * console.log(pkg.versions[0]) // "0.33.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/kubecm-cloud.md * @see https://ts-pkgx.netlify.app/usage */ export declare const kubecmcloudPackage: { /** * The display name of this package. */ name: 'kubecm'; /** * The canonical domain name for this package. */ domain: 'kubecm.cloud'; /** * Brief description of what this package does. */ description: 'Manage your kubeconfig more easily.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/kubecm.cloud/package.yml'; homepageUrl: 'https://kubecm.cloud'; githubUrl: 'https://github.com/sunny0826/kubecm'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install kubecm.cloud'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +kubecm.cloud -- $SHELL -i'; launchpadInstallCommand: 'launchpad install kubecm.cloud'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['kubecm']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.22']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.33.3', '0.33.2', '0.33.1', '0.33.0', '0.32.3', '0.32.2', '0.32.1', '0.32.0', '0.31.0', '0.30.0', '0.29.1', '0.29.0', '0.28.0']; aliases: readonly [] }; export type KubecmcloudPackage = typeof kubecmcloudPackage