UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.49 kB
/** * **lavinmq** - Lightweight and fast AMQP (0-9-1) server * * @domain `lavinmq.com` * @programs `lavinmq`, `lavinmqctl`, `lavinmqperf` * @version `2.4.0` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install +lavinmq.com -- $SHELL -i` * @aliases `lavinmq` * @dependencies `openssl.org^1.1`, `pcre.org/v2@10`, `libevent.org@2`, ... (+1 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.lavinmq * // Or access via domain * const samePkg = pantry.lavinmqcom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "lavinmq.com" * console.log(pkg.description) // "Lightweight and fast AMQP (0-9-1) server" * console.log(pkg.programs) // ["lavinmq", "lavinmqctl", ...] * console.log(pkg.versions[0]) // "2.4.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/lavinmq-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const lavinmqPackage: { /** * The display name of this package. */ name: 'lavinmq.com'; /** * The canonical domain name for this package. */ domain: 'lavinmq.com'; /** * Brief description of what this package does. */ description: 'Lightweight and fast AMQP (0-9-1) server'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/lavinmq.com/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +lavinmq.com -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['lavinmq', 'lavinmqctl', 'lavinmqperf']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^1.1', 'pcre.org/v2@10', 'libevent.org@2', 'hboehm.info/gc@8']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.4.0', '2.3.0', '2.2.0', '2.1.0', '2.0.2', '2.0.1', '2.0.0', '1.3.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['lavinmq'] }; export type LavinmqPackage = typeof lavinmqPackage