UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.37 kB
/** * **etcd** - Distributed reliable key-value store for the most critical data of a distributed system * * @domain `etcd.io` * @programs `etcd`, `etcdctl` * @version `3.6.4` (16 versions available) * @versions From newest version to oldest. * * @install `launchpad install etcd` * @name `etcd` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.etcd * // Or access via domain * const samePkg = pantry.etcdio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "etcd" * console.log(pkg.description) // "Distributed reliable key-value store for the mo..." * console.log(pkg.programs) // ["etcd", "etcdctl"] * console.log(pkg.versions[0]) // "3.6.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/etcd-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const etcdPackage: { /** * The display name of this package. */ name: 'etcd'; /** * The canonical domain name for this package. */ domain: 'etcd.io'; /** * Brief description of what this package does. */ description: 'Distributed reliable key-value store for the most critical data of a distributed system'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/etcd.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 etcd'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['etcd', 'etcdctl']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.6.4', '3.6.3', '3.6.2', '3.6.1', '3.6.0', '3.5.22', '3.5.21', '3.5.20', '3.5.19', '3.5.18', '3.5.17', '3.5.16', '3.5.15', '3.5.14', '3.4.37', '3.4.36']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +etcd.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install etcd' }; export type EtcdPackage = typeof etcdPackage