UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.19 kB
/** * **aac-enc** - Standalone library of the Fraunhofer FDK AAC code from Android * * @domain `sourceforge.net/opencore-amr` * @programs `aac-enc` * @version `2.0.3` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install aac-enc` * @aliases `aac-enc` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.aacenc * // Or access via domain * const samePkg = pantry.sourceforgenetopencoreamr * console.log(pkg === samePkg) // true * console.log(pkg.name) // "opencore-amr" * console.log(pkg.description) // "Standalone library of the Fraunhofer FDK AAC co..." * console.log(pkg.programs) // ["aac-enc"] * console.log(pkg.versions[0]) // "2.0.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/sourceforge-net/opencore-amr.md * @see https://ts-pkgx.netlify.app/usage */ export declare const aacencPackage: { /** * The display name of this package. */ name: 'opencore-amr'; /** * The canonical domain name for this package. */ domain: 'sourceforge.net/opencore-amr'; /** * Brief description of what this package does. */ description: 'Standalone library of the Fraunhofer FDK AAC code from Android'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sourceforge.net/opencore-amr/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install aac-enc'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['aac-enc']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.0.3', '2.0.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['aac-enc'] }; export type AacencPackage = typeof aacencPackage