/** * **sshx** - Fast, collaborative live terminal sharing over the web * * @domain `sshx.io` * @programs `sshx` * @version `2023.11.14` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install sshx.io` * @homepage https://sshx.io * @dependencies `protobuf.dev` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.sshxio * console.log(pkg.name) // "sshx" * console.log(pkg.description) // "Fast, collaborative live terminal sharing over ..." * console.log(pkg.programs) // ["sshx"] * console.log(pkg.versions[0]) // "2023.11.14" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/sshx-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const sshxioPackage: { /** * The display name of this package. */ name: 'sshx'; /** * The canonical domain name for this package. */ domain: 'sshx.io'; /** * Brief description of what this package does. */ description: 'Fast, collaborative live terminal sharing over the web'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sshx.io/package.yml'; homepageUrl: 'https://sshx.io'; githubUrl: 'https://github.com/ekzhang/sshx'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install sshx.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +sshx.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install sshx.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['sshx']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['protobuf.dev']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2023.11.14']; aliases: readonly [] }; export type SshxioPackage = typeof sshxioPackage