ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.2 kB
TypeScript
/**
* **kind** - Kubernetes IN Docker - local clusters for testing Kubernetes
*
* @domain `kind.sigs.k8s.io`
* @programs `kind`
* @version `0.29.0` (11 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install kind`
* @aliases `kind`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.kind
* // Or access via domain
* const samePkg = pantry.kindsigsk8sio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "kind.sigs.k8s.io"
* console.log(pkg.description) // "Kubernetes IN Docker - local clusters for testi..."
* console.log(pkg.programs) // ["kind"]
* console.log(pkg.versions[0]) // "0.29.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/kind-sigs-k8s-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const kindPackage: {
/**
* The display name of this package.
*/
name: 'kind.sigs.k8s.io';
/**
* The canonical domain name for this package.
*/
domain: 'kind.sigs.k8s.io';
/**
* Brief description of what this package does.
*/
description: 'Kubernetes IN Docker - local clusters for testing Kubernetes';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/kind.sigs.k8s.io/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install kind';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['kind'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.29.0', '0.28.0', '0.27.0', '0.26.0', '0.25.0', '0.24.0', '0.23.0', '0.22.0', '0.21.0', '0.20.0', '0.19.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['kind']
};
export type KindPackage = typeof kindPackage