/** * **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.22.1` (17 versions available) * @versions From newest version to oldest. * * @install `launchpad install consul.io` * @homepage https://www.consul.io * @buildDependencies `go.dev@^1.20` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.consulio * 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.22.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/consul-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const consulioPackage: { /** * 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: 'https://www.consul.io'; githubUrl: 'https://github.com/hashicorp/consul'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install consul.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +consul.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install consul.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['consul']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.20']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.22.1', '1.22.0', '1.21.5', '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']; aliases: readonly [] }; export type ConsulioPackage = typeof consulioPackage