UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.26 kB
/** * **mkcert** - A simple zero-config tool to make locally trusted development certificates with any names you'd like. * * @domain `mkcert.dev` * @programs `mkcert` * @version `1.4.4` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install mkcert` * @name `mkcert` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.mkcert * // Or access via domain * const samePkg = pantry.mkcertdev * console.log(pkg === samePkg) // true * console.log(pkg.name) // "mkcert" * console.log(pkg.description) // "A simple zero-config tool to make locally trust..." * console.log(pkg.programs) // ["mkcert"] * console.log(pkg.versions[0]) // "1.4.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/mkcert-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const mkcertPackage: { /** * The display name of this package. */ name: 'mkcert'; /** * The canonical domain name for this package. */ domain: 'mkcert.dev'; /** * Brief description of what this package does. */ description: 'A simple zero-config tool to make locally trusted development certificates with any names you\'d like.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mkcert.dev/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install mkcert'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mkcert']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.4.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) mkcert -- $SHELL -i'; launchpadInstallCommand: 'launchpad install mkcert' }; export type MkcertPackage = typeof mkcertPackage