UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.5 kB
/** * **consul** - Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure. * * @domain `consul.io` * @programs `consul` * @version `1.21.4` (14 versions available) * @versions From newest version to oldest. * * @install `launchpad install consul` * @name `consul` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.consul * // Or access via domain * const samePkg = pantry.consulio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "consul" * console.log(pkg.description) // "Consul is a distributed, highly available, and ..." * console.log(pkg.programs) // ["consul"] * console.log(pkg.versions[0]) // "1.21.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/consul-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const consulPackage: { /** * The display name of this package. */ name: 'consul'; /** * The canonical domain name for this package. */ domain: 'consul.io'; /** * Brief description of what this package does. */ description: 'Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/consul.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install consul'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['consul']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.21.4', '1.21.3', '1.21.2', '1.21.1', '1.21.0', '1.20.6', '1.20.5', '1.20.4', '1.20.3', '1.20.2', '1.20.1', '1.20.0', '1.19.2', '1.19.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) consul -- $SHELL -i'; launchpadInstallCommand: 'launchpad install consul' }; export type ConsulPackage = typeof consulPackage