UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

63 lines 2.07 kB
/** * **PortAudio** - PortAudio is a cross-platform, open-source C language library for real-time audio input and output. * * @domain `portaudio.com` * @version `19.7.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install +portaudio.com -- $SHELL -i` * @aliases `PortAudio` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.PortAudio * // Or access via domain * const samePkg = pantry.portaudiocom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "portaudio.com" * console.log(pkg.description) // "PortAudio is a cross-platform, open-source C la..." * console.log(pkg.versions[0]) // "19.7.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/portaudio-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const portAudioPackage: { /** * The display name of this package. */ name: 'portaudio.com'; /** * The canonical domain name for this package. */ domain: 'portaudio.com'; /** * Brief description of what this package does. */ description: 'PortAudio is a cross-platform, open-source C language library for real-time audio input and output.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/portaudio.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 +portaudio.com -- $SHELL -i'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['19.7.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['PortAudio'] }; export type PortAudioPackage = typeof portAudioPackage