UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.45 kB
/** * **taglib-config** - TagLib Audio Meta-Data Library * * @domain `taglib.org` * @programs `taglib-config` * @version `2.1.1` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install taglib-config` * @name `taglib-config` * @dependencies `zlib.net^1`, `github.com/nemtrif/utfcpp^4` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.taglibconfig * // Or access via domain * const samePkg = pantry.tagliborg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "taglib-config" * console.log(pkg.description) // "TagLib Audio Meta-Data Library" * console.log(pkg.programs) // ["taglib-config"] * console.log(pkg.versions[0]) // "2.1.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/taglib-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const taglibconfigPackage: { /** * The display name of this package. */ name: 'taglib-config'; /** * The canonical domain name for this package. */ domain: 'taglib.org'; /** * Brief description of what this package does. */ description: 'TagLib Audio Meta-Data Library'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/taglib.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 taglib-config'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['taglib-config']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['zlib.net^1', 'github.com/nemtrif/utfcpp^4']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.1.1', '2.1.0', '2.0.2', '2.0.1', '2.0.0', '1.13.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) taglib-config -- $SHELL -i'; launchpadInstallCommand: 'launchpad install taglib-config' }; export type TaglibconfigPackage = typeof taglibconfigPackage