ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.02 kB
TypeScript
/**
* **cpz** - Modern, performance focused unix commands
*
* @domain `crates.io/cpz`
* @programs `cpz`
* @version `3.1.0` (5 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install cpz`
* @name `cpz`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.cpz
* // Or access via domain
* const samePkg = pantry.cratesiocpz
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "cpz"
* console.log(pkg.description) // "Modern, performance focused unix commands"
* console.log(pkg.programs) // ["cpz"]
* console.log(pkg.versions[0]) // "3.1.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/cpz.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const cpzPackage: {
/**
* The display name of this package.
*/
name: 'cpz';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/cpz';
/**
* Brief description of what this package does.
*/
description: 'Modern, performance focused unix commands';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/cpz/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install cpz';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['cpz'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['3.1.0', '3.0.1', '3.0.0', '2.2.0', '2.1.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type CpzPackage = typeof cpzPackage