UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.33 kB
/** * **rist** - Reliable Internet Stream Transport (RIST) * * @domain `code.videolan.org/rist/librist` * @programs `rist2rist`, `ristreceiver`, `ristsender`, `ristsrppasswd` * @version `0.2.11` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install +code.videolan.org/rist/librist -- $SHELL -i` * @aliases `rist` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.rist * // Or access via domain * const samePkg = pantry.codevideolanorgristlibrist * console.log(pkg === samePkg) // true * console.log(pkg.name) // "librist" * console.log(pkg.description) // "Reliable Internet Stream Transport (RIST)" * console.log(pkg.programs) // ["rist2rist", "ristreceiver", ...] * console.log(pkg.versions[0]) // "0.2.11" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/code-videolan-org/rist/librist.md * @see https://ts-pkgx.netlify.app/usage */ export declare const ristPackage: { /** * The display name of this package. */ name: 'librist'; /** * The canonical domain name for this package. */ domain: 'code.videolan.org/rist/librist'; /** * Brief description of what this package does. */ description: 'Reliable Internet Stream Transport (RIST)'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/code.videolan.org/rist/librist/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +code.videolan.org/rist/librist -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rist2rist', 'ristreceiver', 'ristsender', 'ristsrppasswd']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.2.11', '0.2.8', '0.2.7']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['rist'] }; export type RistPackage = typeof ristPackage