ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.37 kB
TypeScript
/**
* **srt** - Secure, Reliable, Transport
*
* @domain `srtalliance.org`
* @programs `srt-ffplay`, `srt-file-transmit`, `srt-live-transmit`, `srt-tunnel`
* @version `1.5.4` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +srtalliance.org -- $SHELL -i`
* @aliases `srt`
* @dependencies `openssl.org`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.srt
* // Or access via domain
* const samePkg = pantry.srtallianceorg
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "srtalliance.org"
* console.log(pkg.description) // "Secure, Reliable, Transport"
* console.log(pkg.programs) // ["srt-ffplay", "srt-file-transmit", ...]
* console.log(pkg.versions[0]) // "1.5.4" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/srtalliance-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const srtPackage: {
/**
* The display name of this package.
*/
name: 'srtalliance.org';
/**
* The canonical domain name for this package.
*/
domain: 'srtalliance.org';
/**
* Brief description of what this package does.
*/
description: 'Secure, Reliable, Transport';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/srtalliance.org/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +srtalliance.org -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['srt-ffplay', 'srt-file-transmit', 'srt-live-transmit', 'srt-tunnel'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['openssl.org'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.5.4', '1.5.3', '1.5.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['srt']
};
export type SrtPackage = typeof srtPackage