/** * **etcd** - Distributed reliable key-value store for the most critical data of a distributed system * * @domain `etcd.io` * @programs `etcd`, `etcdctl` * @version `3.6.6` (23 versions available) * @versions From newest version to oldest. * * @install `launchpad install etcd.io` * @homepage https://etcd.io * @buildDependencies `go.dev@^1.22` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.etcdio * 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.6" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/etcd-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const etcdioPackage: { /** * 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: 'https://etcd.io'; githubUrl: 'https://github.com/etcd-io/etcd'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install etcd.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +etcd.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install etcd.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['etcd', 'etcdctl']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.22']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.6.6', '3.6.5', '3.6.4', '3.6.3', '3.6.2', '3.6.1', '3.6.0', '3.5.25', '3.5.24', '3.5.23', '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.39', '3.4.38', '3.4.37', '3.4.36']; aliases: readonly [] }; export type EtcdioPackage = typeof etcdioPackage