UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.36 kB
/** * **enc** - 🔑🔒 A modern and friendly CLI alternative to GnuPG: generate and download keys, encrypt, decrypt, and sign text and files, and more. * * @domain `github.com/life4/enc` * @programs `enc` * @version `1.1.4` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install enc` * @name `enc` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.enc * // Or access via domain * const samePkg = pantry.githubcomlife4enc * console.log(pkg === samePkg) // true * console.log(pkg.name) // "enc" * console.log(pkg.description) // "🔑🔒 A modern and friendly CLI alternative to G..." * console.log(pkg.programs) // ["enc"] * console.log(pkg.versions[0]) // "1.1.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/life4/enc.md * @see https://ts-pkgx.netlify.app/usage */ export declare const encPackage: { /** * The display name of this package. */ name: 'enc'; /** * The canonical domain name for this package. */ domain: 'github.com/life4/enc'; /** * Brief description of what this package does. */ description: '🔑🔒 A modern and friendly CLI alternative to GnuPG: generate and download keys, encrypt, decrypt, and sign text and files, and more.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/life4/enc/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install enc'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['enc']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.1.4', '1.1.3', '1.1.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) enc -- $SHELL -i'; launchpadInstallCommand: 'launchpad install enc' }; export type EncPackage = typeof encPackage