ts-pkgx
Version:
A library & CLI for managing packages
75 lines • 2.66 kB
TypeScript
/**
* **age-plugin-yubikey** - Plugin for encrypting files with age and PIV tokens such as YubiKeys
*
* @domain `github.com/str4d/age-plugin-yubikey`
* @programs `age-plugin-yubikey`
* @version `0.5.0` (2 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install age-plugin-yubikey`
* @name `age-plugin-yubikey`
* @dependencies `linux:pcsclite.apdu.fr^2` (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.agepluginyubikey
* // Or access via domain
* const samePkg = pantry.githubcomstr4dagepluginyubikey
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "age-plugin-yubikey"
* console.log(pkg.description) // "Plugin for encrypting files with age and PIV to..."
* console.log(pkg.programs) // ["age-plugin-yubikey"]
* console.log(pkg.versions[0]) // "0.5.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/str4d/age-plugin-yubikey.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const agepluginyubikeyPackage: {
/**
* The display name of this package.
*/
name: 'age-plugin-yubikey';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/str4d/age-plugin-yubikey';
/**
* Brief description of what this package does.
*/
description: 'Plugin for encrypting files with age and PIV tokens such as YubiKeys';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/str4d/age-plugin-yubikey/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install age-plugin-yubikey';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['age-plugin-yubikey'];
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 ['linux:pcsclite.apdu.fr^2'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.5.0', '0.4.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type AgepluginyubikeyPackage = typeof agepluginyubikeyPackage