UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 1.98 kB
/** * **vdpau** - pkgx package * * @domain `freedesktop.org/vdpau` * @version `1.5.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install +freedesktop.org/vdpau -- $SHELL -i` * @name `vdpau` * @dependencies `x.org/x11`, `x.org/exts`, `x.org/protocol` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.vdpau * // Or access via domain * const samePkg = pantry.freedesktoporgvdpau * console.log(pkg === samePkg) // true * console.log(pkg.name) // "vdpau" * console.log(pkg.versions[0]) // "1.5.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/freedesktop-org/vdpau.md * @see https://ts-pkgx.netlify.app/usage */ export declare const vdpauPackage: { /** * The display name of this package. */ name: 'vdpau'; /** * The canonical domain name for this package. */ domain: 'freedesktop.org/vdpau'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/freedesktop.org/vdpau/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +freedesktop.org/vdpau -- $SHELL -i'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['x.org/x11', 'x.org/exts', 'x.org/protocol']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.5.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type VdpauPackage = typeof vdpauPackage