ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.37 kB
TypeScript
/**
* **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.1` (11 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install consul`
* @aliases `consul`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.consul
* // Or access via domain
* const samePkg = pantry.consulio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "consul.io"
* console.log(pkg.description) // "Consul is a distributed, highly available, and ..."
* console.log(pkg.programs) // ["consul"]
* console.log(pkg.versions[0]) // "1.21.1" (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.io';
/**
* 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.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 ['consul']
};
export type ConsulPackage = typeof consulPackage