UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.32 kB
/** * **rio** - A hardware-accelerated GPU terminal emulator focusing to run in desktops and browsers. * * @domain `rioterm.com` * @programs `rio` * @version `0.2.29` (14 versions available) * @versions From newest version to oldest. * * @install `launchpad install rio` * @name `rio` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.rio * // Or access via domain * const samePkg = pantry.riotermcom * console.log(pkg === samePkg) // true * 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.29" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/rioterm-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rioPackage: { /** * 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: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install rio'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rio']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['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']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) rio -- $SHELL -i'; launchpadInstallCommand: 'launchpad install rio' }; export type RioPackage = typeof rioPackage