UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

62 lines 2.1 kB
/** * **cfssl.org** - CFSSL: Cloudflare's PKI and TLS toolkit * * @domain `cfssl.org` * @programs `cfssl`, `cfssl-bundle`, `cfssl-certinfo`, `cfssl-newkey`, `cfssl-scan`, ... (+3 more) * @version `1.6.5` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install cfssl.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cfsslorg * console.log(pkg.name) // "cfssl.org" * console.log(pkg.description) // "CFSSL: Cloudflare's PKI and TLS toolkit" * console.log(pkg.programs) // ["cfssl", "cfssl-bundle", ...] * console.log(pkg.versions[0]) // "1.6.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/cfssl-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cfsslorgPackage: { /** * The display name of this package. */ name: 'cfssl.org'; /** * The canonical domain name for this package. */ domain: 'cfssl.org'; /** * Brief description of what this package does. */ description: 'CFSSL: Cloudflare\'s PKI and TLS toolkit'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cfssl.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install cfssl.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cfssl', 'cfssl-bundle', 'cfssl-certinfo', 'cfssl-newkey', 'cfssl-scan', 'cfssljson', 'mkbundle', 'multirootca']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.6.5']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +cfssl.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install cfssl.org' }; export type CfsslorgPackage = typeof cfsslorgPackage