ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.35 kB
TypeScript
/**
* **kargo** - Application lifecycle orchestration
*
* @domain `akuity.io/kargo`
* @programs `kargo`
* @version `1.5.3` (40 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install kargo`
* @name `kargo`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.kargo
* // Or access via domain
* const samePkg = pantry.akuityiokargo
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "kargo"
* console.log(pkg.description) // "Application lifecycle orchestration"
* console.log(pkg.programs) // ["kargo"]
* console.log(pkg.versions[0]) // "1.5.3" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/akuity-io/kargo.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const kargoPackage: {
/**
* The display name of this package.
*/
name: 'kargo';
/**
* The canonical domain name for this package.
*/
domain: 'akuity.io/kargo';
/**
* Brief description of what this package does.
*/
description: 'Application lifecycle orchestration';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/akuity.io/kargo/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install kargo';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['kargo'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.5.3', '1.5.2', '1.5.1', '1.5.0', '1.4.4', '1.4.3', '1.4.2', '1.4.1', '1.4.0', '1.3.4', '1.3.3', '1.3.2', '1.3.1', '1.3.0', '1.2.3', '1.2.2', '1.2.1', '1.2.0', '1.1.3', '1.1.2', '1.1.1', '1.1.0', '1.0.4', '1.0.3', '1.0.2', '1.0.1', '1.0.0', '0.9.2', '0.9.1', '0.9.0', '0.8.8', '0.8.7', '0.8.6', '0.8.5', '0.8.4', '0.8.3', '0.8.2', '0.8.1', '0.8.0', '0.7.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type KargoPackage = typeof kargoPackage