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