UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.43 kB
/** * **pinentry** - Passphrase entry dialog utilizing the Assuan protocol * * @domain `gnupg.org/pinentry` * @programs `pinentry`, `pinentry-tty` * @version `1.3.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install +gnupg.org/pinentry -- $SHELL -i` * @name `pinentry` * @dependencies `gnupg.org/libassuan`, `gnupg.org/libgpg-error` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.pinentry * // Or access via domain * const samePkg = pantry.gnupgorgpinentry * console.log(pkg === samePkg) // true * console.log(pkg.name) // "pinentry" * console.log(pkg.description) // "Passphrase entry dialog utilizing the Assuan pr..." * console.log(pkg.programs) // ["pinentry", "pinentry-tty"] * console.log(pkg.versions[0]) // "1.3.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnupg-org/pinentry.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pinentryPackage: { /** * The display name of this package. */ name: 'pinentry'; /** * The canonical domain name for this package. */ domain: 'gnupg.org/pinentry'; /** * Brief description of what this package does. */ description: 'Passphrase entry dialog utilizing the Assuan protocol'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnupg.org/pinentry/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +gnupg.org/pinentry -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pinentry', 'pinentry-tty']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnupg.org/libassuan', 'gnupg.org/libgpg-error']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.1', '1.3.0', '1.2.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type PinentryPackage = typeof pinentryPackage