UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.34 kB
/** * **minikube** - Run a Kubernetes cluster locally * * @domain `kubernetes.io/minikube` * @programs `minikube` * @version `1.36.0` (12 versions available) * @versions From newest version to oldest. * * @install `launchpad install minikube` * @name `minikube` * @dependencies `kubernetes.io/kubectl` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.minikube * // Or access via domain * const samePkg = pantry.kubernetesiominikube * console.log(pkg === samePkg) // true * console.log(pkg.name) // "minikube" * console.log(pkg.description) // "Run a Kubernetes cluster locally" * console.log(pkg.programs) // ["minikube"] * console.log(pkg.versions[0]) // "1.36.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/kubernetes-io/minikube.md * @see https://ts-pkgx.netlify.app/usage */ export declare const minikubePackage: { /** * The display name of this package. */ name: 'minikube'; /** * The canonical domain name for this package. */ domain: 'kubernetes.io/minikube'; /** * Brief description of what this package does. */ description: 'Run a Kubernetes cluster locally'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/kubernetes.io/minikube/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install minikube'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['minikube']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['kubernetes.io/kubectl']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.36.0', '1.35.0', '1.34.0', '1.33.1', '1.33.0', '1.32.0', '1.31.2', '1.31.1', '1.31.0', '1.30.1', '1.30.0', '1.29.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type MinikubePackage = typeof minikubePackage