/** * **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.sourceforge.io` * @homepage https://pwgen.sourceforge.net/ * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.pwgensourceforgeio * console.log(pkg.name) // "pwgen" * 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 pwgensourceforgeioPackage: { /** * The display name of this package. */ name: 'pwgen'; /** * 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: 'https://pwgen.sourceforge.net/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pwgen.sourceforge.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +pwgen.sourceforge.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install pwgen.sourceforge.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pwgen']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.8.0']; aliases: readonly [] }; export type PwgensourceforgeioPackage = typeof pwgensourceforgeioPackage