UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.35 kB
/** * **shout** - Data and connectivity library for the icecast server * * @domain `xiph.org/libshout` * @programs `shout` * @version `2.4.6` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install shout` * @aliases `shout` * @dependencies `xiph.org/ogg`, `xiph.org/vorbis`, `openssl.org~1`, ... (+2 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.shout * // Or access via domain * const samePkg = pantry.xiphorglibshout * console.log(pkg === samePkg) // true * console.log(pkg.name) // "libshout" * console.log(pkg.description) // "Data and connectivity library for the icecast s..." * console.log(pkg.programs) // ["shout"] * console.log(pkg.versions[0]) // "2.4.6" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/xiph-org/libshout.md * @see https://ts-pkgx.netlify.app/usage */ export declare const shoutPackage: { /** * The display name of this package. */ name: 'libshout'; /** * The canonical domain name for this package. */ domain: 'xiph.org/libshout'; /** * Brief description of what this package does. */ description: 'Data and connectivity library for the icecast server'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/xiph.org/libshout/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install shout'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['shout']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['xiph.org/ogg', 'xiph.org/vorbis', 'openssl.org~1', 'speex.org', 'theora.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.4.6']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['shout'] }; export type ShoutPackage = typeof shoutPackage