UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 2.29 kB
/** * **musepack.net** - Audio compression format and tools * * @domain `musepack.net` * @programs `mpc2sv8`, `mpcchap`, `mpccut`, `mpcdec`, `mpcenc`, ... (+2 more) * @version `475.0.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install musepack.net` * @dependencies `musepack.net/libreplaygain`, `musepack.net/libcuefile` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.musepacknet * console.log(pkg.name) // "musepack.net" * console.log(pkg.description) // "Audio compression format and tools" * console.log(pkg.programs) // ["mpc2sv8", "mpcchap", ...] * console.log(pkg.versions[0]) // "475.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/musepack-net.md * @see https://ts-pkgx.netlify.app/usage */ export declare const musepacknetPackage: { /** * The display name of this package. */ name: 'musepack.net'; /** * The canonical domain name for this package. */ domain: 'musepack.net'; /** * Brief description of what this package does. */ description: 'Audio compression format and tools'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/musepack.net/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install musepack.net'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mpc2sv8', 'mpcchap', 'mpccut', 'mpcdec', 'mpcenc', 'mpcgain', 'wavcmp']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['musepack.net/libreplaygain', 'musepack.net/libcuefile']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['475.0.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +musepack.net -- $SHELL -i'; launchpadInstallCommand: 'launchpad install musepack.net' }; export type MusepacknetPackage = typeof musepacknetPackage