UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 2.49 kB
/** * **openssh.com** - pkgx package * * @domain `openssh.com` * @programs `scp`, `sftp`, `slogin`, `ssh`, `ssh-add`, ... (+4 more) * @version `10.0.0` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install openssh.com` * @dependencies `nlnetlabs.nl/ldns`, `developers.yubico.com/libfido2`, `openssl.org`, ... (+5 more) (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.opensshcom * console.log(pkg.name) // "openssh.com" * console.log(pkg.programs) // ["scp", "sftp", ...] * console.log(pkg.versions[0]) // "10.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/openssh-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const opensshcomPackage: { /** * The display name of this package. */ name: 'openssh.com'; /** * The canonical domain name for this package. */ domain: 'openssh.com'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/openssh.com/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install openssh.com'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['scp', 'sftp', 'slogin', 'ssh', 'ssh-add', 'ssh-agent', 'ssh-keygen', 'ssh-keyscan', 'sshd']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['nlnetlabs.nl/ldns', 'developers.yubico.com/libfido2', 'openssl.org', 'kerberos.org', 'thrysoee.dk/editline', 'github.com/besser82/libxcrypt', 'zlib.net', 'linux:linux-pam.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['10.0.0', '9.9.0', '9.8.0', '9.7.0', '9.6.0', '9.5.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +openssh.com -- $SHELL -i'; launchpadInstallCommand: 'launchpad install openssh.com' }; export type OpensshcomPackage = typeof opensshcomPackage