/** * **vorbis** - Reference implementation of the Ogg Vorbis audio format. * * @domain `xiph.org/vorbis` * @version `1.3.7` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install xiph.org/vorbis` * @dependencies `xiph.org/ogg^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.xiphorgvorbis * console.log(pkg.name) // "vorbis" * console.log(pkg.description) // "Reference implementation of the Ogg Vorbis audi..." * console.log(pkg.versions[0]) // "1.3.7" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/xiph-org/vorbis.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xiphorgvorbisPackage: { /** * The display name of this package. */ name: 'vorbis'; /** * The canonical domain name for this package. */ domain: 'xiph.org/vorbis'; /** * Brief description of what this package does. */ description: 'Reference implementation of the Ogg Vorbis audio format.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/xiph.org/vorbis/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/xiph/vorbis'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install xiph.org/vorbis'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +xiph.org/vorbis -- $SHELL -i'; launchpadInstallCommand: 'launchpad install xiph.org/vorbis'; programs: readonly []; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['xiph.org/ogg^1']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.7']; aliases: readonly [] }; export type XiphorgvorbisPackage = typeof xiphorgvorbisPackage