UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.18 kB
/** * **argon2** - The password hash Argon2, winner of PHC * * @domain `github.com/P-H-C/phc-winner-argon2` * @programs `argon2` * @version `20190702.0.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install argon2` * @aliases `argon2` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.argon2 * // Or access via domain * const samePkg = pantry.githubcomphcphcwinnerargon2 * console.log(pkg === samePkg) // true * console.log(pkg.name) // "phc-winner-argon2" * console.log(pkg.description) // "The password hash Argon2, winner of PHC" * console.log(pkg.programs) // ["argon2"] * console.log(pkg.versions[0]) // "20190702.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/P-H-C/phc-winner-argon2.md * @see https://ts-pkgx.netlify.app/usage */ export declare const argon2Package: { /** * The display name of this package. */ name: 'phc-winner-argon2'; /** * The canonical domain name for this package. */ domain: 'github.com/P-H-C/phc-winner-argon2'; /** * Brief description of what this package does. */ description: 'The password hash Argon2, winner of PHC'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/P-H-C/phc-winner-argon2/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install argon2'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['argon2']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['20190702.0.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['argon2'] }; export type Argon2Package = typeof argon2Package