UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

58 lines 1.89 kB
/** * **libplacebo** - pkgx package * * @domain `videolan.org/libplacebo` * @version `7.351.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install +videolan.org/libplacebo -- $SHELL -i` * @dependencies `littlecms.com^2`, `github.com/KhronosGroup/Vulkan-Loader^1.3.272` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.videolanorglibplacebo * console.log(pkg.name) // "libplacebo" * console.log(pkg.versions[0]) // "7.351.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/videolan-org/libplacebo.md * @see https://ts-pkgx.netlify.app/usage */ export declare const videolanorglibplaceboPackage: { /** * The display name of this package. */ name: 'libplacebo'; /** * The canonical domain name for this package. */ domain: 'videolan.org/libplacebo'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/videolan.org/libplacebo/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +videolan.org/libplacebo -- $SHELL -i'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['littlecms.com^2', 'github.com/KhronosGroup/Vulkan-Loader^1.3.272']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['7.351.0', '7.349.0', '6.338.2', '6.338.1']; aliases: readonly [] }; export type VideolanorglibplaceboPackage = typeof videolanorglibplaceboPackage