ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.54 kB
TypeScript
/**
* **k9s** - 🐶 Kubernetes CLI To Manage Your Clusters In Style!
*
* @domain `k9scli.io`
* @programs `k9s`
* @version `0.50.6` (52 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install k9s`
* @aliases `k9s`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.k9s
* // Or access via domain
* const samePkg = pantry.k9scliio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "k9scli.io"
* console.log(pkg.description) // "🐶 Kubernetes CLI To Manage Your Clusters In St..."
* console.log(pkg.programs) // ["k9s"]
* console.log(pkg.versions[0]) // "0.50.6" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/k9scli-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const k9sPackage: {
/**
* The display name of this package.
*/
name: 'k9scli.io';
/**
* The canonical domain name for this package.
*/
domain: 'k9scli.io';
/**
* Brief description of what this package does.
*/
description: '🐶 Kubernetes CLI To Manage Your Clusters In Style!';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/k9scli.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 k9s';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['k9s'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.50.6', '0.50.5', '0.50.4', '0.50.3', '0.50.2', '0.50.1', '0.50.0', '0.40.10', '0.40.9', '0.40.8', '0.40.7', '0.40.6', '0.40.5', '0.40.4', '0.40.3', '0.40.2', '0.40.1', '0.40.0', '0.32.7', '0.32.6', '0.32.5', '0.32.4', '0.32.3', '0.32.2', '0.32.1', '0.32.0', '0.31.9', '0.31.8', '0.31.7', '0.31.6', '0.31.5', '0.31.4', '0.31.3', '0.31.2', '0.31.1', '0.31.0', '0.30.8', '0.30.7', '0.30.6', '0.30.5', '0.30.4', '0.30.3', '0.30.2', '0.30.1', '0.30.0', '0.29.1', '0.29.0', '0.28.2', '0.28.1', '0.28.0', '0.27.4', '0.27.3'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['k9s']
};
export type K9sPackage = typeof k9sPackage