UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.12 kB
/** * **hyperfine** - A command-line benchmarking tool * * @domain `crates.io/hyperfine` * @programs `hyperfine` * @version `1.19.0` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install hyperfine` * @name `hyperfine` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.hyperfine * // Or access via domain * const samePkg = pantry.cratesiohyperfine * console.log(pkg === samePkg) // true * console.log(pkg.name) // "hyperfine" * console.log(pkg.description) // "A command-line benchmarking tool" * console.log(pkg.programs) // ["hyperfine"] * console.log(pkg.versions[0]) // "1.19.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/hyperfine.md * @see https://ts-pkgx.netlify.app/usage */ export declare const hyperfinePackage: { /** * The display name of this package. */ name: 'hyperfine'; /** * The canonical domain name for this package. */ domain: 'crates.io/hyperfine'; /** * Brief description of what this package does. */ description: 'A command-line benchmarking tool'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/hyperfine/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install hyperfine'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['hyperfine']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.19.0', '1.18.0', '1.17.0', '1.16.1', '1.16.0', '1.15.0', '0.17.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type HyperfinePackage = typeof hyperfinePackage