UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.23 kB
/** * **aserver** - Provides audio and MIDI functionality to the Linux operating system * * @domain `alsa-project.org/alsa-lib` * @programs `aserver` * @version `1.2.14` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install aserver` * @aliases `aserver` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.aserver * // Or access via domain * const samePkg = pantry.alsaprojectorgalsalib * console.log(pkg === samePkg) // true * console.log(pkg.name) // "alsa-lib" * console.log(pkg.description) // "Provides audio and MIDI functionality to the Li..." * console.log(pkg.programs) // ["aserver"] * console.log(pkg.versions[0]) // "1.2.14" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/alsa-project-org/alsa-lib.md * @see https://ts-pkgx.netlify.app/usage */ export declare const aserverPackage: { /** * The display name of this package. */ name: 'alsa-lib'; /** * The canonical domain name for this package. */ domain: 'alsa-project.org/alsa-lib'; /** * Brief description of what this package does. */ description: 'Provides audio and MIDI functionality to the Linux operating system'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/alsa-project.org/alsa-lib/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install aserver'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['aserver']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.2.14', '1.2.13', '1.2.12', '1.2.11', '1.2.10', '1.2.9']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['aserver'] }; export type AserverPackage = typeof aserverPackage