/** * **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.dev` * @homepage https://mkcert.dev * @buildDependencies `go.dev@^1.18` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.mkcertdev * 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 mkcertdevPackage: { /** * 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: 'https://mkcert.dev'; githubUrl: 'https://github.com/FiloSottile/mkcert'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install mkcert.dev'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +mkcert.dev -- $SHELL -i'; launchpadInstallCommand: 'launchpad install mkcert.dev'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mkcert']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.18']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.4.4']; aliases: readonly [] }; export type MkcertdevPackage = typeof mkcertdevPackage