UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.39 kB
/** * **lighthouse** - Ethereum consensus client in Rust * * @domain `crates.io/lighthouse` * @programs `lighthouse` * @version `7.0.1` (19 versions available) * @versions From newest version to oldest. * * @install `launchpad install lighthouse` * @name `lighthouse` * @dependencies `zlib.net^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.lighthouse * // Or access via domain * const samePkg = pantry.cratesiolighthouse * console.log(pkg === samePkg) // true * console.log(pkg.name) // "lighthouse" * console.log(pkg.description) // "Ethereum consensus client in Rust" * console.log(pkg.programs) // ["lighthouse"] * console.log(pkg.versions[0]) // "7.0.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/lighthouse.md * @see https://ts-pkgx.netlify.app/usage */ export declare const lighthousePackage: { /** * The display name of this package. */ name: 'lighthouse'; /** * The canonical domain name for this package. */ domain: 'crates.io/lighthouse'; /** * Brief description of what this package does. */ description: 'Ethereum consensus client in Rust'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/lighthouse/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install lighthouse'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['lighthouse']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['zlib.net^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['7.0.1', '7.0.0', '6.0.1', '6.0.0', '5.3.0', '5.2.1', '5.2.0', '5.1.3', '5.1.2', '5.1.1', '5.1.0', '5.0.0', '4.6.0', '4.5.0', '4.4.1', '4.3.0', '4.2.0', '4.1.0', '4.0.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type LighthousePackage = typeof lighthousePackage