UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.28 kB
/** * **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` * @name `sshx` * @dependencies `protobuf.dev` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.sshx * // Or access via domain * const samePkg = pantry.sshxio * console.log(pkg === samePkg) // true * 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 sshxPackage: { /** * 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: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install sshx'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['sshx']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['protobuf.dev']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2023.11.14']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) sshx -- $SHELL -i'; launchpadInstallCommand: 'launchpad install sshx' }; export type SshxPackage = typeof sshxPackage