ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.29 kB
TypeScript
/**
* **pkgx** - Standalone binary that can run anything
*
* @domain `pkgx.sh`
* @programs `pkgx`
* @version `2.7.0` (35 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install pkgx`
* @aliases `pkgx`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.pkgx
* // Or access via domain
* const samePkg = pantry.pkgxsh
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "pkgx.sh"
* console.log(pkg.description) // "Standalone binary that can run anything"
* console.log(pkg.programs) // ["pkgx"]
* console.log(pkg.versions[0]) // "2.7.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/pkgx-sh.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const pkgxPackage: {
/**
* The display name of this package.
*/
name: 'pkgx.sh';
/**
* The canonical domain name for this package.
*/
domain: 'pkgx.sh';
/**
* Brief description of what this package does.
*/
description: 'Standalone binary that can run anything';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pkgx.sh/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install pkgx';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['pkgx'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.7.0', '2.6.0', '2.5.0', '2.4.0', '2.3.2', '2.3.1', '2.3.0', '2.2.1', '2.2.0', '2.1.4', '2.1.3', '2.1.2', '2.1.1', '2.1.0', '2.0.0', '1.5.0', '1.4.1', '1.4.0', '1.3.1', '1.3.0', '1.2.2', '1.2.1', '1.2.0', '1.1.6', '1.1.5', '1.1.4', '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'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['pkgx']
};
export type PkgxPackage = typeof pkgxPackage