UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.18 kB
/** * **minisign** - A dead simple tool to sign files and verify digital signatures. * * @domain `jedisct1.github.io/minisign` * @programs `minisign` * @version `0.12.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install minisign` * @name `minisign` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.minisign * // Or access via domain * const samePkg = pantry.jedisct1githubiominisign * console.log(pkg === samePkg) // true * console.log(pkg.name) // "minisign" * console.log(pkg.description) // "A dead simple tool to sign files and verify dig..." * console.log(pkg.programs) // ["minisign"] * console.log(pkg.versions[0]) // "0.12.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/jedisct1-github-io/minisign.md * @see https://ts-pkgx.netlify.app/usage */ export declare const minisignPackage: { /** * The display name of this package. */ name: 'minisign'; /** * The canonical domain name for this package. */ domain: 'jedisct1.github.io/minisign'; /** * Brief description of what this package does. */ description: 'A dead simple tool to sign files and verify digital signatures.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/jedisct1.github.io/minisign/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install minisign'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['minisign']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.12.0', '0.11.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type MinisignPackage = typeof minisignPackage