/** * **mosh** - Remote terminal application * * @domain `mosh.org` * @programs `mosh-client`, `mosh-server` * @version `1.4.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install mosh.org` * @homepage https://mosh.org * @dependencies `protobuf.dev@26.1.0`, `invisible-island.net/ncurses@6`, `zlib.net@1.3`, ... (+1 more) (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.moshorg * console.log(pkg.name) // "mosh" * console.log(pkg.description) // "Remote terminal application" * console.log(pkg.programs) // ["mosh-client", "mosh-server"] * console.log(pkg.versions[0]) // "1.4.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/mosh-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const moshorgPackage: { /** * The display name of this package. */ name: 'mosh'; /** * The canonical domain name for this package. */ domain: 'mosh.org'; /** * Brief description of what this package does. */ description: 'Remote terminal application'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mosh.org/package.yml'; homepageUrl: 'https://mosh.org'; githubUrl: 'https://github.com/mobile-shell/mosh'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install mosh.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +mosh.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install mosh.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mosh-client', 'mosh-server']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['protobuf.dev@26.1.0', 'invisible-island.net/ncurses@6', 'zlib.net@1.3', 'linux:openssl.org@3']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.4.0']; aliases: readonly [] }; export type MoshorgPackage = typeof moshorgPackage