UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.63 kB
/** * **talhelper** - A tool to help creating Talos kubernetes cluster * * @domain `budimanjojo.github.io/talhelper` * @programs `talhelper` * @version `3.0.29` (49 versions available) * @versions From newest version to oldest. * * @install `launchpad install talhelper` * @name `talhelper` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.talhelper * // Or access via domain * const samePkg = pantry.budimanjojogithubiotalhelper * console.log(pkg === samePkg) // true * console.log(pkg.name) // "talhelper" * console.log(pkg.description) // "A tool to help creating Talos kubernetes cluster" * console.log(pkg.programs) // ["talhelper"] * console.log(pkg.versions[0]) // "3.0.29" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/budimanjojo-github-io/talhelper.md * @see https://ts-pkgx.netlify.app/usage */ export declare const talhelperPackage: { /** * The display name of this package. */ name: 'talhelper'; /** * The canonical domain name for this package. */ domain: 'budimanjojo.github.io/talhelper'; /** * Brief description of what this package does. */ description: 'A tool to help creating Talos kubernetes cluster'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/budimanjojo.github.io/talhelper/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install talhelper'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['talhelper']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.0.29', '3.0.28', '3.0.27', '3.0.26', '3.0.25', '3.0.24', '3.0.23', '3.0.22', '3.0.21', '3.0.20', '3.0.19', '3.0.18', '3.0.17', '3.0.16', '3.0.15', '3.0.14', '3.0.13', '3.0.12', '3.0.11', '3.0.10', '3.0.9', '3.0.8', '3.0.7', '3.0.6', '3.0.5', '3.0.4', '3.0.3', '3.0.2', '3.0.1', '3.0.0', '2.4.10', '2.4.9', '2.4.8', '2.4.7', '2.4.6', '2.4.5', '2.4.4', '2.4.3', '2.4.2', '2.4.1', '2.4.0', '2.3.11', '2.3.10', '2.3.9', '2.3.8', '2.3.7', '2.3.6', '2.3.5', '2.3.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type TalhelperPackage = typeof talhelperPackage