ts-pkgx
Version:
A library & CLI for managing packages
61 lines • 1.88 kB
TypeScript
/**
* **libssh2.org** - the SSH library
*
* @domain `libssh2.org`
* @version `1.11.1` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install libssh2.org`
* @dependencies `openssl.org^1.1`, `zlib.net^1.2`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.libssh2org
* console.log(pkg.name) // "libssh2.org"
* console.log(pkg.description) // "the SSH library"
* console.log(pkg.versions[0]) // "1.11.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/libssh2-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const libssh2orgPackage: {
/**
* The display name of this package.
*/
name: 'libssh2.org';
/**
* The canonical domain name for this package.
*/
domain: 'libssh2.org';
/**
* Brief description of what this package does.
*/
description: 'the SSH library';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libssh2.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 libssh2.org';
programs: readonly [];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['openssl.org^1.1', 'zlib.net^1.2'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.11.1', '1.11.0', '1.10.0'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +libssh2.org -- $SHELL -i';
launchpadInstallCommand: 'launchpad install libssh2.org'
};
export type Libssh2orgPackage = typeof libssh2orgPackage