/** * **rio** - A hardware-accelerated GPU terminal emulator focusing to run in desktops and browsers. * * @domain `rioterm.com` * @programs `rio` * @version `0.2.36` (21 versions available) * @versions From newest version to oldest. * * @install `launchpad install rioterm.com` * @homepage https://rioterm.com * @dependencies `linux:freedesktop.org/fontconfig` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.riotermcom * console.log(pkg.name) // "rio" * console.log(pkg.description) // "A hardware-accelerated GPU terminal emulator fo..." * console.log(pkg.programs) // ["rio"] * console.log(pkg.versions[0]) // "0.2.36" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/rioterm-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const riotermcomPackage: { /** * The display name of this package. */ name: 'rio'; /** * The canonical domain name for this package. */ domain: 'rioterm.com'; /** * Brief description of what this package does. */ description: 'A hardware-accelerated GPU terminal emulator focusing to run in desktops and browsers.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/rioterm.com/package.yml'; homepageUrl: 'https://rioterm.com'; githubUrl: 'https://github.com/raphamorim/rio'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install rioterm.com'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +rioterm.com -- $SHELL -i'; launchpadInstallCommand: 'launchpad install rioterm.com'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rio']; 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 ['linux:freedesktop.org/fontconfig']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.2.36', '0.2.35', '0.2.34', '0.2.33', '0.2.32', '0.2.31', '0.2.30', '0.2.29', '0.2.28', '0.2.27', '0.2.26', '0.2.25', '0.2.24', '0.2.23', '0.2.22', '0.2.21', '0.2.20', '0.2.19', '0.2.18', '0.2.17', '0.2.16']; aliases: readonly [] }; export type RiotermcomPackage = typeof riotermcomPackage