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