UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.42 kB
/** * **gitsign** - Keyless Git signing using Sigstore * * @domain `sigstore.dev/gitsign` * @programs `gitsign`, `gitsign-credential-cache` * @version `0.13.0` (10 versions available) * @versions From newest version to oldest. * * @install `launchpad install +sigstore.dev/gitsign -- $SHELL -i` * @name `gitsign` * @dependencies `git-scm.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gitsign * // Or access via domain * const samePkg = pantry.sigstoredevgitsign * console.log(pkg === samePkg) // true * console.log(pkg.name) // "gitsign" * console.log(pkg.description) // "Keyless Git signing using Sigstore" * console.log(pkg.programs) // ["gitsign", "gitsign-credential-cache"] * console.log(pkg.versions[0]) // "0.13.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/sigstore-dev/gitsign.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gitsignPackage: { /** * The display name of this package. */ name: 'gitsign'; /** * The canonical domain name for this package. */ domain: 'sigstore.dev/gitsign'; /** * Brief description of what this package does. */ description: 'Keyless Git signing using Sigstore'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sigstore.dev/gitsign/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +sigstore.dev/gitsign -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gitsign', 'gitsign-credential-cache']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['git-scm.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.13.0', '0.12.0', '0.11.0', '0.10.2', '0.10.1', '0.10.0', '0.9.0', '0.8.1', '0.8.0', '0.7.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type GitsignPackage = typeof gitsignPackage