ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.08 kB
TypeScript
/**
* **pv** - Monitor data's progress through a pipe
*
* @domain `ivarch.com/pv`
* @programs `pv`
* @version `1.9.31` (13 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install pv`
* @name `pv`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.pv
* // Or access via domain
* const samePkg = pantry.ivarchcompv
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "pv"
* console.log(pkg.description) // "Monitor data's progress through a pipe"
* console.log(pkg.programs) // ["pv"]
* console.log(pkg.versions[0]) // "1.9.31" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/ivarch-com/pv.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const pvPackage: {
/**
* The display name of this package.
*/
name: 'pv';
/**
* The canonical domain name for this package.
*/
domain: 'ivarch.com/pv';
/**
* Brief description of what this package does.
*/
description: 'Monitor data\'s progress through a pipe';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/ivarch.com/pv/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install pv';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['pv'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.9.31', '1.9.27', '1.9.25', '1.9.24', '1.9.15', '1.9.7', '1.9.0', '1.8.14', '1.8.13', '1.8.12', '1.8.10', '1.8.9', '1.8.5'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type PvPackage = typeof pvPackage