/** * **valkey** - A flexible distributed key-value datastore that is optimized for caching and other realtime workloads. * * @domain `valkey.io` * @programs `valkey-server`, `valkey-cli`, `valkey-benchmark` * @version `9.0.0` (21 versions available) * @versions From newest version to oldest. * * @install `launchpad install valkey.io` * @homepage https://valkey.io * @dependencies `openssl.org^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.valkeyio * console.log(pkg.name) // "valkey" * console.log(pkg.description) // "A flexible distributed key-value datastore that..." * console.log(pkg.programs) // ["valkey-server", "valkey-cli", ...] * console.log(pkg.versions[0]) // "9.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/valkey-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const valkeyioPackage: { /** * The display name of this package. */ name: 'valkey'; /** * The canonical domain name for this package. */ domain: 'valkey.io'; /** * Brief description of what this package does. */ description: 'A flexible distributed key-value datastore that is optimized for caching and other realtime workloads.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/valkey.io/package.yml'; homepageUrl: 'https://valkey.io'; githubUrl: 'https://github.com/valkey-io/valkey'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install valkey.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +valkey.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install valkey.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['valkey-server', 'valkey-cli', 'valkey-benchmark']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openssl.org^1']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['9.0.0', '8.1.5', '8.1.4', '8.1.3', '8.1.2', '8.1.1', '8.1.0', '8.0.6', '8.0.5', '8.0.4', '8.0.3', '8.0.2', '8.0.1', '8.0.0', '7.2.11', '7.2.10', '7.2.9', '7.2.8', '7.2.7', '7.2.6', '7.2.5']; aliases: readonly [] }; export type ValkeyioPackage = typeof valkeyioPackage