UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

56 lines 1.76 kB
/** * **zeromq.org** - ZeroMQ core engine in C++, implements ZMTP/3.1 * * @domain `zeromq.org` * @version `4.3.5` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install zeromq.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.zeromqorg * console.log(pkg.name) // "zeromq.org" * console.log(pkg.description) // "ZeroMQ core engine in C++, implements ZMTP/3.1" * console.log(pkg.versions[0]) // "4.3.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/zeromq-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const zeromqorgPackage: { /** * The display name of this package. */ name: 'zeromq.org'; /** * The canonical domain name for this package. */ domain: 'zeromq.org'; /** * Brief description of what this package does. */ description: 'ZeroMQ core engine in C++, implements ZMTP/3.1'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/zeromq.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install zeromq.org'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.3.5', '4.3.4']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +zeromq.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install zeromq.org' }; export type ZeromqorgPackage = typeof zeromqorgPackage