UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.15 kB
/** * **faac** - Freeware Advanced Audio Coder faac mirror * * @domain `sourceforge.net/faac` * @programs `faac` * @version `1.30.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install faac` * @name `faac` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.faac * // Or access via domain * const samePkg = pantry.sourceforgenetfaac * console.log(pkg === samePkg) // true * console.log(pkg.name) // "faac" * console.log(pkg.description) // "Freeware Advanced Audio Coder faac mirror" * console.log(pkg.programs) // ["faac"] * console.log(pkg.versions[0]) // "1.30.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/sourceforge-net/faac.md * @see https://ts-pkgx.netlify.app/usage */ export declare const faacPackage: { /** * The display name of this package. */ name: 'faac'; /** * The canonical domain name for this package. */ domain: 'sourceforge.net/faac'; /** * Brief description of what this package does. */ description: 'Freeware Advanced Audio Coder faac mirror'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sourceforge.net/faac/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install faac'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['faac']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.30.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) faac -- $SHELL -i'; launchpadInstallCommand: 'launchpad install faac' }; export type FaacPackage = typeof faacPackage