/** * **rabbitmq** - Open source RabbitMQ: core server and tier 1 (built-in) plugins * * @domain `rabbitmq.com` * @programs `rabbitmqctl`, `rabbitmq-defaults`, `rabbitmq-diagnostics`, `rabbitmq-env`, `rabbitmq-plugins`, ... (+5 more) * @version `4.2.1` (40 versions available) * @versions From newest version to oldest. * * @install `launchpad install rabbitmq.com` * @homepage https://www.rabbitmq.com/ * @dependencies `erlang.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.rabbitmqcom * console.log(pkg.name) // "rabbitmq" * console.log(pkg.description) // "Open source RabbitMQ: core server and tier 1 (b..." * console.log(pkg.programs) // ["rabbitmqctl", "rabbitmq-defaults", ...] * console.log(pkg.versions[0]) // "4.2.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/rabbitmq-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rabbitmqcomPackage: { /** * The display name of this package. */ name: 'rabbitmq'; /** * The canonical domain name for this package. */ domain: 'rabbitmq.com'; /** * Brief description of what this package does. */ description: 'Open source RabbitMQ: core server and tier 1 (built-in) plugins'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/rabbitmq.com/package.yml'; homepageUrl: 'https://www.rabbitmq.com/'; githubUrl: 'https://github.com/rabbitmq/rabbitmq-server'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install rabbitmq.com'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +rabbitmq.com -- $SHELL -i'; launchpadInstallCommand: 'launchpad install rabbitmq.com'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rabbitmqctl', 'rabbitmq-defaults', 'rabbitmq-diagnostics', 'rabbitmq-env', 'rabbitmq-plugins', 'rabbitmq-queues', 'rabbitmq-server', 'rabbitmq-streams', 'rabbitmq-upgrade', 'vmware-rabbitmq']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['erlang.org']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.2.1', '4.2.0', '4.1.6', '4.1.5', '4.1.4', '4.1.3', '4.1.2', '4.1.1', '4.1.0', '4.0.9', '4.0.8', '4.0.7', '4.0.6', '4.0.5', '4.0.4', '4.0.3', '4.0.2', '4.0.1', '4.0.0', '3.13.7', '3.13.6', '3.13.5', '3.13.4', '3.13.3', '3.13.2', '3.13.1', '3.13.0', '3.12.14', '3.12.13', '3.12.12', '3.12.11', '3.12.10', '3.12.9', '3.12.8', '3.12.7', '3.12.6', '3.11.28', '3.11.26', '3.11.25', '3.11.24']; aliases: readonly [] }; export type RabbitmqcomPackage = typeof rabbitmqcomPackage