ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.39 kB
TypeScript
/**
* **kluctl** - The missing glue to put together large Kubernetes deployments, composed of multiple smaller parts (Helm/Kustomize/...) in a manageable and unified way.
*
* @domain `kluctl.io`
* @programs `kluctl`
* @version `2.26.0` (14 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install kluctl`
* @aliases `kluctl`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.kluctl
* // Or access via domain
* const samePkg = pantry.kluctlio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "kluctl.io"
* console.log(pkg.description) // "The missing glue to put together large Kubernet..."
* console.log(pkg.programs) // ["kluctl"]
* console.log(pkg.versions[0]) // "2.26.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/kluctl-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const kluctlPackage: {
/**
* The display name of this package.
*/
name: 'kluctl.io';
/**
* The canonical domain name for this package.
*/
domain: 'kluctl.io';
/**
* Brief description of what this package does.
*/
description: 'The missing glue to put together large Kubernetes deployments, composed of multiple smaller parts (Helm/Kustomize/...) in a manageable and unified way.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/kluctl.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 kluctl';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['kluctl'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.26.0', '2.25.1', '2.25.0', '2.24.1', '2.24.0', '2.23.5', '2.23.4', '2.23.3', '2.23.2', '2.23.1', '2.23.0', '2.22.1', '2.22.0', '2.21.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['kluctl']
};
export type KluctlPackage = typeof kluctlPackage