UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.23 kB
/** * **kubecm** - Manage your kubeconfig more easily. * * @domain `kubecm.cloud` * @programs `kubecm` * @version `0.33.1` (11 versions available) * @versions From newest version to oldest. * * @install `launchpad install kubecm` * @name `kubecm` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.kubecm * // Or access via domain * const samePkg = pantry.kubecmcloud * console.log(pkg === samePkg) // true * 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.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/kubecm-cloud.md * @see https://ts-pkgx.netlify.app/usage */ export declare const kubecmPackage: { /** * 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: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install kubecm'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['kubecm']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['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']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) kubecm -- $SHELL -i'; launchpadInstallCommand: 'launchpad install kubecm' }; export type KubecmPackage = typeof kubecmPackage