UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

62 lines 2.1 kB
/** * **wavpack.com** - WavPack encode/decode library, command-line programs, and several plugins * * @domain `wavpack.com` * @programs `wavpack`, `wvunpack`, `wvtag`, `wvgain` * @version `5.8.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install wavpack.com` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.wavpackcom * console.log(pkg.name) // "wavpack.com" * console.log(pkg.description) // "WavPack encode/decode library, command-line pro..." * console.log(pkg.programs) // ["wavpack", "wvunpack", ...] * console.log(pkg.versions[0]) // "5.8.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/wavpack-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const wavpackcomPackage: { /** * The display name of this package. */ name: 'wavpack.com'; /** * The canonical domain name for this package. */ domain: 'wavpack.com'; /** * Brief description of what this package does. */ description: 'WavPack encode/decode library, command-line programs, and several plugins'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/wavpack.com/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install wavpack.com'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['wavpack', 'wvunpack', 'wvtag', 'wvgain']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.8.1', '5.8.0', '5.7.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +wavpack.com -- $SHELL -i'; launchpadInstallCommand: 'launchpad install wavpack.com' }; export type WavpackcomPackage = typeof wavpackcomPackage