ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.45 kB
TypeScript
/**
* **k0sctl** - A bootstrapping and management tool for k0s clusters.
*
* @domain `github.com/k0sproject/k0sctl`
* @programs `k0sctl`
* @version `0.25.1` (20 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install k0sctl`
* @name `k0sctl`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.k0sctl
* // Or access via domain
* const samePkg = pantry.githubcomk0sprojectk0sctl
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "k0sctl"
* console.log(pkg.description) // "A bootstrapping and management tool for k0s clu..."
* console.log(pkg.programs) // ["k0sctl"]
* console.log(pkg.versions[0]) // "0.25.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/k0sproject/k0sctl.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const k0sctlPackage: {
/**
* The display name of this package.
*/
name: 'k0sctl';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/k0sproject/k0sctl';
/**
* Brief description of what this package does.
*/
description: 'A bootstrapping and management tool for k0s clusters.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/k0sproject/k0sctl/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install k0sctl';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['k0sctl'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.25.1', '0.25.0', '0.24.0', '0.23.0', '0.22.0', '0.21.0', '0.20.0', '0.19.6', '0.19.4', '0.19.3', '0.19.2', '0.19.1', '0.19.0', '0.18.1', '0.18.0', '0.17.8', '0.17.7', '0.17.6', '0.17.5', '0.17.4'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) k0sctl -- $SHELL -i';
launchpadInstallCommand: 'launchpad install k0sctl'
};
export type K0sctlPackage = typeof k0sctlPackage