ts-pkgx
Version:
A library & CLI for managing packages
58 lines • 1.67 kB
TypeScript
/**
* **theora.org** - pkgx package
*
* @domain `theora.org`
* @version `1.2.0` (2 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +theora.org -- $SHELL -i`
* @dependencies `xiph.org/ogg`, `xiph.org/vorbis`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.theoraorg
* console.log(pkg.name) // "theora.org"
* console.log(pkg.versions[0]) // "1.2.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/theora-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const theoraorgPackage: {
/**
* The display name of this package.
*/
name: 'theora.org';
/**
* The canonical domain name for this package.
*/
domain: 'theora.org';
/**
* Brief description of what this package does.
*/
description: '';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/theora.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 +theora.org -- $SHELL -i';
programs: readonly [];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['xiph.org/ogg', 'xiph.org/vorbis'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.2.0', '1.1.1'];
aliases: readonly []
};
export type TheoraorgPackage = typeof theoraorgPackage