UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

60 lines 1.84 kB
/** * **libssh.org** - pkgx package * * @domain `libssh.org` * @version `0.11.2` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install libssh.org` * @dependencies `openssl.org^1.1`, `zlib.net^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.libsshorg * console.log(pkg.name) // "libssh.org" * console.log(pkg.versions[0]) // "0.11.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libssh-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libsshorgPackage: { /** * The display name of this package. */ name: 'libssh.org'; /** * The canonical domain name for this package. */ domain: 'libssh.org'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libssh.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 libssh.org'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^1.1', 'zlib.net^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.11.2', '0.11.1', '0.11.0', '0.10.6', '0.10.5', '0.10.4', '0.9.8', '0.9.7']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +libssh.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install libssh.org' }; export type LibsshorgPackage = typeof libsshorgPackage