ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.98 kB
TypeScript
/**
* **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.0.2` (37 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +redis.io -- $SHELL -i`
* @aliases `redis`
* @dependencies `openssl.org^1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.redis
* // Or access via domain
* const samePkg = pantry.redisio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "redis.io"
* 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.0.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/redis-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const redisPackage: {
/**
* The display name of this package.
*/
name: 'redis.io';
/**
* 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: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +redis.io -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['redis-server', 'redis-cli', 'redis-benchmark'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['openssl.org^1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['8.0.2', '8.0.1', '8.0.0', '7.4.4', '7.4.2', '7.4.1', '7.4.0', '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.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'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['redis']
};
export type RedisPackage = typeof redisPackage