ts-pkgx
Version:
A library & CLI for managing packages
56 lines • 1.78 kB
TypeScript
/**
* **libuv.org** - Cross-platform asynchronous I/O
*
* @domain `libuv.org`
* @version `1.51.0` (10 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install libuv.org`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.libuvorg
* console.log(pkg.name) // "libuv.org"
* console.log(pkg.description) // "Cross-platform asynchronous I/O"
* console.log(pkg.versions[0]) // "1.51.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/libuv-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const libuvorgPackage: {
/**
* The display name of this package.
*/
name: 'libuv.org';
/**
* The canonical domain name for this package.
*/
domain: 'libuv.org';
/**
* Brief description of what this package does.
*/
description: 'Cross-platform asynchronous I/O';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libuv.org/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install libuv.org';
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.51.0', '1.50.0', '1.49.2', '1.49.1', '1.49.0', '1.48.0', '1.47.0', '1.46.0', '1.45.0', '1.44.2'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +libuv.org -- $SHELL -i';
launchpadInstallCommand: 'launchpad install libuv.org'
};
export type LibuvorgPackage = typeof libuvorgPackage