ts-pkgx
Version:
A library & CLI for managing packages
63 lines • 1.97 kB
TypeScript
/**
* **hiredis** - Minimalistic C client for Redis >= 1.2
*
* @domain `github.com/redis/hiredis`
* @version `1.3.0` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +github.com/redis/hiredis -- $SHELL -i`
* @name `hiredis`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.hiredis
* // Or access via domain
* const samePkg = pantry.githubcomredishiredis
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "hiredis"
* console.log(pkg.description) // "Minimalistic C client for Redis >= 1.2"
* console.log(pkg.versions[0]) // "1.3.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/redis/hiredis.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const hiredisPackage: {
/**
* The display name of this package.
*/
name: 'hiredis';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/redis/hiredis';
/**
* Brief description of what this package does.
*/
description: 'Minimalistic C client for Redis >= 1.2';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/redis/hiredis/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +github.com/redis/hiredis -- $SHELL -i';
programs: readonly [];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.3.0', '1.2.0', '1.1.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type HiredisPackage = typeof hiredisPackage