UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.33 kB
/** * **gpg-tui** - Manage your GnuPG keys with ease! 🔐 * * @domain `orhun.dev/gpg-tui` * @programs `gpg-tui` * @version `0.11.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install gpg-tui` * @name `gpg-tui` * @dependencies `gnupg.org`, `gnupg.org/gpgme^1.12`, `gnupg.org/libgpg-error`, ... (+1 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gpgtui * // Or access via domain * const samePkg = pantry.orhundevgpgtui * console.log(pkg === samePkg) // true * console.log(pkg.name) // "gpg-tui" * console.log(pkg.description) // "Manage your GnuPG keys with ease! 🔐" * console.log(pkg.programs) // ["gpg-tui"] * console.log(pkg.versions[0]) // "0.11.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/orhun-dev/gpg-tui.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gpgtuiPackage: { /** * The display name of this package. */ name: 'gpg-tui'; /** * The canonical domain name for this package. */ domain: 'orhun.dev/gpg-tui'; /** * Brief description of what this package does. */ description: 'Manage your GnuPG keys with ease! 🔐'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/orhun.dev/gpg-tui/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gpg-tui'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gpg-tui']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnupg.org', 'gnupg.org/gpgme^1.12', 'gnupg.org/libgpg-error', 'x.org/xcb']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.11.1', '0.11.0', '0.10.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type GpgtuiPackage = typeof gpgtuiPackage