UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.13 kB
/** * **kubecm** - Manage your kubeconfig more easily. * * @domain `kubecm.cloud` * @programs `kubecm` * @version `0.33.0` (10 versions available) * @versions From newest version to oldest. * * @install `launchpad install kubecm` * @aliases `kubecm` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.kubecm * // Or access via domain * const samePkg = pantry.kubecmcloud * console.log(pkg === samePkg) // true * console.log(pkg.name) // "kubecm.cloud" * console.log(pkg.description) // "Manage your kubeconfig more easily." * console.log(pkg.programs) // ["kubecm"] * console.log(pkg.versions[0]) // "0.33.0" (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.cloud'; /** * 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.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 ['kubecm'] }; export type KubecmPackage = typeof kubecmPackage