ts-pkgx
Version:
A library & CLI for managing packages
61 lines • 2.09 kB
TypeScript
/**
* **libwebsockets.org** - canonical libwebsockets.org networking library
*
* @domain `libwebsockets.org`
* @version `4.4.1` (7 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install libwebsockets.org`
* @dependencies `libuv.org@1`, `libevent.org@2`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.libwebsocketsorg
* console.log(pkg.name) // "libwebsockets.org"
* console.log(pkg.description) // "canonical libwebsockets.org networking library"
* console.log(pkg.versions[0]) // "4.4.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/libwebsockets-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const libwebsocketsorgPackage: {
/**
* The display name of this package.
*/
name: 'libwebsockets.org';
/**
* The canonical domain name for this package.
*/
domain: 'libwebsockets.org';
/**
* Brief description of what this package does.
*/
description: 'canonical libwebsockets.org networking library';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libwebsockets.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 libwebsockets.org';
programs: readonly [];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['libuv.org@1', 'libevent.org@2'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['4.4.1', '4.4.0', '4.3.6', '4.3.5', '4.3.4', '4.3.3', '4.3.2'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +libwebsockets.org -- $SHELL -i';
launchpadInstallCommand: 'launchpad install libwebsockets.org'
};
export type LibwebsocketsorgPackage = typeof libwebsocketsorgPackage