/** * **redis** - Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes, Streams, HyperLogLogs, Bitmaps. * * @domain `redis.io` * @programs `redis-server`, `redis-cli`, `redis-benchmark` * @version `8.4.0` (53 versions available) * @versions From newest version to oldest. * * @install `launchpad install redis.io` * @homepage http://redis.io * @dependencies `openssl.org^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.redisio * console.log(pkg.name) // "redis" * console.log(pkg.description) // "Redis is an in-memory database that persists on..." * console.log(pkg.programs) // ["redis-server", "redis-cli", ...] * console.log(pkg.versions[0]) // "8.4.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/redis-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const redisioPackage: { /** * The display name of this package. */ name: 'redis'; /** * The canonical domain name for this package. */ domain: 'redis.io'; /** * Brief description of what this package does. */ description: 'Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes, Streams, HyperLogLogs, Bitmaps.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/redis.io/package.yml'; homepageUrl: 'http://redis.io'; githubUrl: 'https://github.com/redis/redis'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install redis.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +redis.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install redis.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['redis-server', 'redis-cli', 'redis-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 ['8.4.0', '8.2.3', '8.2.2', '8.2.1', '8.2.0', '8.0.5', '8.0.4', '8.0.3', '8.0.2', '8.0.1', '8.0.0', '7.4.7', '7.4.6', '7.4.5', '7.4.4', '7.4.2', '7.4.1', '7.4.0', '7.2.12', '7.2.11', '7.2.10', '7.2.9', '7.2.8', '7.2.7', '7.2.6', '7.2.5', '7.2.4', '7.2.3', '7.2.2', '7.2.1', '7.2.0', '7.0.15', '7.0.14', '7.0.13', '7.0.12', '7.0.11', '7.0.10', '7.0.9', '7.0.8', '7.0.7', '6.2.21', '6.2.19', '6.2.18', '6.2.17', '6.2.16', '6.2.15', '6.2.14', '6.2.13', '6.2.12', '6.2.11', '6.0.20', '6.0.19', '6.0.18']; aliases: readonly [] }; export type RedisioPackage = typeof redisioPackage