UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.29 kB
/** * **mercure** - 🪽 An open, easy, fast, reliable and battery-efficient solution for real-time communications * * @domain `mercure.rocks` * @programs `mercure` * @version `0.19.2` (11 versions available) * @versions From newest version to oldest. * * @install `launchpad install mercure` * @aliases `mercure` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.mercure * // Or access via domain * const samePkg = pantry.mercurerocks * console.log(pkg === samePkg) // true * console.log(pkg.name) // "mercure.rocks" * console.log(pkg.description) // "🪽 An open, easy, fast, reliable and battery-ef..." * console.log(pkg.programs) // ["mercure"] * console.log(pkg.versions[0]) // "0.19.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/mercure-rocks.md * @see https://ts-pkgx.netlify.app/usage */ export declare const mercurePackage: { /** * The display name of this package. */ name: 'mercure.rocks'; /** * The canonical domain name for this package. */ domain: 'mercure.rocks'; /** * Brief description of what this package does. */ description: '🪽 An open, easy, fast, reliable and battery-efficient solution for real-time communications'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mercure.rocks/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/dunglas/mercure'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install mercure'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mercure']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.19.2', '0.19.1', '0.19.0', '0.18.4', '0.18.3', '0.18.2', '0.18.1', '0.18.0', '0.17.1', '0.17.0', '0.16.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['mercure'] }; export type MercurePackage = typeof mercurePackage