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