UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

65 lines 2.33 kB
/** * **p11-kit** - Provides a way to load and enumerate PKCS#11 modules. * * @domain `freedesktop.org/p11-kit` * @programs `p11-kit`, `trust` * @version `0.25.5` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install +freedesktop.org/p11-kit -- $SHELL -i` * @dependencies `sourceware.org/libffi^3`, `curl.se/ca-certs`, `gnu.org/libtasn1^4`, ... (+1 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.freedesktoporgp11kit * console.log(pkg.name) // "p11-kit" * console.log(pkg.description) // "Provides a way to load and enumerate PKCS#11 mo..." * console.log(pkg.programs) // ["p11-kit", "trust"] * console.log(pkg.versions[0]) // "0.25.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/freedesktop-org/p11-kit.md * @see https://ts-pkgx.netlify.app/usage */ export declare const freedesktoporgp11kitPackage: { /** * The display name of this package. */ name: 'p11-kit'; /** * The canonical domain name for this package. */ domain: 'freedesktop.org/p11-kit'; /** * Brief description of what this package does. */ description: 'Provides a way to load and enumerate PKCS#11 modules.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/freedesktop.org/p11-kit/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +freedesktop.org/p11-kit -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['p11-kit', 'trust']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['sourceware.org/libffi^3', 'curl.se/ca-certs', 'gnu.org/libtasn1^4', 'gnu.org/gettext']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.25.5', '0.25.4', '0.25.3', '0.25.2', '0.25.1', '0.25.0', '0.24.1']; aliases: readonly [] }; export type Freedesktoporgp11kitPackage = typeof freedesktoporgp11kitPackage