UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.18 kB
/** * **k3sup** - Utility to create k3s clusters on any local or remote VM * * @domain `github.com/alexellis/k3sup` * @programs `k3sup` * @version `0.13.9` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install k3sup` * @name `k3sup` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.k3sup * // Or access via domain * const samePkg = pantry.githubcomalexellisk3sup * console.log(pkg === samePkg) // true * console.log(pkg.name) // "k3sup" * console.log(pkg.description) // "Utility to create k3s clusters on any local or ..." * console.log(pkg.programs) // ["k3sup"] * console.log(pkg.versions[0]) // "0.13.9" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/alexellis/k3sup.md * @see https://ts-pkgx.netlify.app/usage */ export declare const k3supPackage: { /** * The display name of this package. */ name: 'k3sup'; /** * The canonical domain name for this package. */ domain: 'github.com/alexellis/k3sup'; /** * Brief description of what this package does. */ description: 'Utility to create k3s clusters on any local or remote VM'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/alexellis/k3sup/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install k3sup'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['k3sup']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.13.9', '0.13.8', '0.13.6', '0.13.5', '0.13.4', '0.13.3', '0.13.2', '0.13.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type K3supPackage = typeof k3supPackage