UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.24 kB
/** * **autossh** - Automatically restart SSH sessions and tunnels * * @domain `harding.motd.ca/autossh` * @programs `autossh` * @version `1.4f` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install autossh` * @name `autossh` * @dependencies `openssh.com` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.autossh * // Or access via domain * const samePkg = pantry.hardingmotdcaautossh * console.log(pkg === samePkg) // true * console.log(pkg.name) // "autossh" * console.log(pkg.description) // "Automatically restart SSH sessions and tunnels" * console.log(pkg.programs) // ["autossh"] * console.log(pkg.versions[0]) // "1.4f" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/harding-motd-ca/autossh.md * @see https://ts-pkgx.netlify.app/usage */ export declare const autosshPackage: { /** * The display name of this package. */ name: 'autossh'; /** * The canonical domain name for this package. */ domain: 'harding.motd.ca/autossh'; /** * Brief description of what this package does. */ description: 'Automatically restart SSH sessions and tunnels'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/harding.motd.ca/autossh/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/Autossh/autossh'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install autossh'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['autossh']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssh.com']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.4f']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type AutosshPackage = typeof autosshPackage