ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.55 kB
TypeScript
/**
* **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 `8.1.2` (12 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +valkey.io -- $SHELL -i`
* @aliases `valkey`
* @dependencies `openssl.org^1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.valkey
* // Or access via domain
* const samePkg = pantry.valkeyio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "valkey.io"
* console.log(pkg.description) // "A flexible distributed key-value datastore that..."
* console.log(pkg.programs) // ["valkey-server", "valkey-cli", ...]
* console.log(pkg.versions[0]) // "8.1.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/valkey-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const valkeyPackage: {
/**
* The display name of this package.
*/
name: 'valkey.io';
/**
* 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: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +valkey.io -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['valkey-server', 'valkey-cli', 'valkey-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.1.2', '8.1.1', '8.1.0', '8.0.3', '8.0.2', '8.0.1', '8.0.0', '7.2.9', '7.2.8', '7.2.7', '7.2.6', '7.2.5'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['valkey']
};
export type ValkeyPackage = typeof valkeyPackage