ts-pkgx
Version:
A library & CLI for managing packages
59 lines • 1.85 kB
TypeScript
/**
* **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 -- $SHELL -i`
* @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/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +xiph.org/vorbis -- $SHELL -i';
programs: readonly [];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['xiph.org/ogg^1'];
/**
* 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