ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.22 kB
TypeScript
/**
* **click** - The "Command Line Interactive Controller for Kubernetes"
*
* @domain `crates.io/click`
* @programs `click`
* @version `0.6.3` (2 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install click`
* @name `click`
* @dependencies `openssl.org^1.1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.click
* // Or access via domain
* const samePkg = pantry.cratesioclick
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "click"
* console.log(pkg.description) // "The "Command Line Interactive Controller for Ku..."
* console.log(pkg.programs) // ["click"]
* console.log(pkg.versions[0]) // "0.6.3" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/click.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const clickPackage: {
/**
* The display name of this package.
*/
name: 'click';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/click';
/**
* Brief description of what this package does.
*/
description: 'The "Command Line Interactive Controller for Kubernetes"';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/click/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install click';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['click'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['openssl.org^1.1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.6.3', '0.6.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type ClickPackage = typeof clickPackage