UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

75 lines 2.55 kB
/** * **yubikey-agent** - Seamless ssh-agent for YubiKeys and other PIV tokens * * @domain `filippo.io/yubikey-agent` * @programs `yubikey-agent` * @version `0.1.6` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install yubikey-agent` * @name `yubikey-agent` * @dependencies `pcsclite.apdu.fr^2`, `linux:gnupg.org/pinentry` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.yubikeyagent * // Or access via domain * const samePkg = pantry.filippoioyubikeyagent * console.log(pkg === samePkg) // true * console.log(pkg.name) // "yubikey-agent" * console.log(pkg.description) // "Seamless ssh-agent for YubiKeys and other PIV t..." * console.log(pkg.programs) // ["yubikey-agent"] * console.log(pkg.versions[0]) // "0.1.6" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/filippo-io/yubikey-agent.md * @see https://ts-pkgx.netlify.app/usage */ export declare const yubikeyagentPackage: { /** * The display name of this package. */ name: 'yubikey-agent'; /** * The canonical domain name for this package. */ domain: 'filippo.io/yubikey-agent'; /** * Brief description of what this package does. */ description: 'Seamless ssh-agent for YubiKeys and other PIV tokens'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/filippo.io/yubikey-agent/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install yubikey-agent'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['yubikey-agent']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['pcsclite.apdu.fr^2', 'linux:gnupg.org/pinentry']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.1.6']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type YubikeyagentPackage = typeof yubikeyagentPackage