ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.3 kB
TypeScript
/**
* **eol** - CLI to show end-of-life dates for a number of products.
*
* @domain `endoflife.date`
* @programs `eol`
* @version `0.22.0` (9 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install eol`
* @aliases `eol`
* @dependencies `python.org^3.12`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.eol
* // Or access via domain
* const samePkg = pantry.endoflifedate
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "endoflife.date"
* console.log(pkg.description) // "CLI to show end-of-life dates for a number of p..."
* console.log(pkg.programs) // ["eol"]
* console.log(pkg.versions[0]) // "0.22.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/endoflife-date.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const eolPackage: {
/**
* The display name of this package.
*/
name: 'endoflife.date';
/**
* The canonical domain name for this package.
*/
domain: 'endoflife.date';
/**
* Brief description of what this package does.
*/
description: 'CLI to show end-of-life dates for a number of products.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/endoflife.date/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install eol';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['eol'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['python.org^3.12'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.22.0', '0.21.0', '0.20.0', '0.19.0', '0.18.0', '0.17.0', '0.16.0', '0.15.0', '0.14.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['eol']
};
export type EolPackage = typeof eolPackage