UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

58 lines 2 kB
/** * **v2.5** - pkgx package * * @domain `gnupg.org/v2.5` * @version `2.5.8` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install +gnupg.org/v2.5 -- $SHELL -i` * @dependencies `zlib.net^1.1`, `sourceware.org/bzip2`, `gnupg.org/npth`, ... (+9 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnupgorgv25 * console.log(pkg.name) // "v2.5" * console.log(pkg.versions[0]) // "2.5.8" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnupg-org/v2-5.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnupgorgv25Package: { /** * The display name of this package. */ name: 'v2.5'; /** * The canonical domain name for this package. */ domain: 'gnupg.org/v2.5'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnupg.org/v2.5/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/v2.5 -- $SHELL -i'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['zlib.net^1.1', 'sourceware.org/bzip2', 'gnupg.org/npth', 'gnupg.org/libgpg-error', 'gnupg.org/libksba', 'gnupg.org/libassuan@3', 'gnupg.org/libgcrypt^1.11', 'gnupg.org/pinentry', 'gnutls.org^3', 'openldap.org^2', 'gnu.org/readline^8', 'sqlite.org^3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.5.8', '2.5.7', '2.5.6', '2.5.5', '2.5.4', '2.5.3', '2.5.2', '2.5.1', '2.5.0']; aliases: readonly [] }; export type Gnupgorgv25Package = typeof gnupgorgv25Package