/** * **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.io` * @homepage https://tmate.io/ * @dependencies `libevent.org^2.0`, `invisible-island.net/ncurses@6`, `msgpack.org@6`, ... (+1 more) * @buildDependencies `gnu.org/bison`, `gnu.org/autoconf`, `gnu.org/automake` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.tmateio * console.log(pkg.name) // "tmate" * 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 tmateioPackage: { /** * The display name of this package. */ name: 'tmate'; /** * 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: 'https://tmate.io/'; githubUrl: 'https://github.com/tmate-io/tmate'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install tmate.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +tmate.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install tmate.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['tmate']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['libevent.org^2.0', 'invisible-island.net/ncurses@6', 'msgpack.org@6', 'libssh.org@0']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/bison', 'gnu.org/autoconf', 'gnu.org/automake']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.4.0']; aliases: readonly [] }; export type TmateioPackage = typeof tmateioPackage