ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.21 kB
TypeScript
/**
* **gpgme** - Library access to GnuPG
*
* @domain `gnupg.org/gpgme`
* @programs `gpgme-config`, `gpgme-json`, `gpgme-tool`
* @version `2.0.0` (11 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +gnupg.org/gpgme -- $SHELL -i`
* @name `gpgme`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.gpgme
* // Or access via domain
* const samePkg = pantry.gnupgorggpgme
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "gpgme"
* console.log(pkg.description) // "Library access to GnuPG"
* console.log(pkg.programs) // ["gpgme-config", "gpgme-json", ...]
* console.log(pkg.versions[0]) // "2.0.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/gnupg-org/gpgme.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const gpgmePackage: {
/**
* The display name of this package.
*/
name: 'gpgme';
/**
* The canonical domain name for this package.
*/
domain: 'gnupg.org/gpgme';
/**
* Brief description of what this package does.
*/
description: 'Library access to GnuPG';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnupg.org/gpgme/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/gpgme -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['gpgme-config', 'gpgme-json', 'gpgme-tool'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.0.0', '1.24.3', '1.24.2', '1.24.1', '1.24.0', '1.23.2', '1.23.1', '1.23.0', '1.22.0', '1.19.0', '1.5.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type GpgmePackage = typeof gpgmePackage