ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.25 kB
TypeScript
/**
* **pkgm** - Install `pkgx` packages to `/usr/local`
*
* @domain `pkgx.sh/pkgm`
* @programs `pkgm`
* @version `0.11.1` (10 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install pkgm`
* @name `pkgm`
* @dependencies `pkgx.sh^2`, `curl.se/ca-certs`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.pkgm
* // Or access via domain
* const samePkg = pantry.pkgxshpkgm
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "pkgm"
* console.log(pkg.description) // "Install `pkgx` packages to `/usr/local`"
* console.log(pkg.programs) // ["pkgm"]
* console.log(pkg.versions[0]) // "0.11.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/pkgx-sh/pkgm.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const pkgmPackage: {
/**
* The display name of this package.
*/
name: 'pkgm';
/**
* The canonical domain name for this package.
*/
domain: 'pkgx.sh/pkgm';
/**
* Brief description of what this package does.
*/
description: 'Install `pkgx` packages to `/usr/local`';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pkgx.sh/pkgm/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install pkgm';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['pkgm'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['pkgx.sh^2', 'curl.se/ca-certs'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.11.1', '0.11.0', '0.10.1', '0.10.0', '0.9.2', '0.9.1', '0.9.0', '0.8.0', '0.7.2', '0.7.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type PkgmPackage = typeof pkgmPackage