ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.15 kB
TypeScript
/**
* **rio** - A hardware-accelerated GPU terminal emulator focusing to run in desktops and browsers.
*
* @domain `rioterm.com`
* @programs `rio`
* @version `0.2.20` (5 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install rio`
* @aliases `rio`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.rio
* // Or access via domain
* const samePkg = pantry.riotermcom
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "rioterm.com"
* console.log(pkg.description) // "A hardware-accelerated GPU terminal emulator fo..."
* console.log(pkg.programs) // ["rio"]
* console.log(pkg.versions[0]) // "0.2.20" (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: 'rioterm.com';
/**
* 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.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 ['rio']
};
export type RioPackage = typeof rioPackage