UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.25 kB
/** * **tmate** - Instant Terminal Sharing * * @domain `tmate.io` * @programs `tmate` * @version `2.4.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install tmate` * @aliases `tmate` * @dependencies `libevent.org^2.0`, `invisible-island.net/ncurses@6`, `msgpack.org@6`, ... (+1 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.tmate * // Or access via domain * const samePkg = pantry.tmateio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "tmate.io" * console.log(pkg.description) // "Instant Terminal Sharing" * console.log(pkg.programs) // ["tmate"] * console.log(pkg.versions[0]) // "2.4.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/tmate-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const tmatePackage: { /** * The display name of this package. */ name: 'tmate.io'; /** * The canonical domain name for this package. */ domain: 'tmate.io'; /** * Brief description of what this package does. */ description: 'Instant Terminal Sharing'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/tmate.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install tmate'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['tmate']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['libevent.org^2.0', 'invisible-island.net/ncurses@6', 'msgpack.org@6', 'libssh.org@0']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.4.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['tmate'] }; export type TmatePackage = typeof tmatePackage