ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.54 kB
TypeScript
/**
* **vamp** - Audio processing plugin system sdk
*
* @domain `vamp-plugins.org`
* @programs `vamp-simple-host`, `vamp-rdf-template-generator`
* @version `2.10.0` (2 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install vamp`
* @name `vamp`
* @dependencies `xiph.org/flac^1.4`, `xiph.org/ogg^1.3`, `github.com/libsndfile/libsndfile^1.2`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.vamp
* // Or access via domain
* const samePkg = pantry.vamppluginsorg
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "vamp"
* console.log(pkg.description) // "Audio processing plugin system sdk"
* console.log(pkg.programs) // ["vamp-simple-host", "vamp-rdf-template-generator"]
* console.log(pkg.versions[0]) // "2.10.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/vamp-plugins-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const vampPackage: {
/**
* The display name of this package.
*/
name: 'vamp';
/**
* The canonical domain name for this package.
*/
domain: 'vamp-plugins.org';
/**
* Brief description of what this package does.
*/
description: 'Audio processing plugin system sdk';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/vamp-plugins.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 vamp';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['vamp-simple-host', 'vamp-rdf-template-generator'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['xiph.org/flac^1.4', 'xiph.org/ogg^1.3', 'github.com/libsndfile/libsndfile^1.2'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.10.0', '2.9.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +vamp-plugins.org -- $SHELL -i';
launchpadInstallCommand: 'launchpad install vamp'
};
export type VampPackage = typeof vampPackage