UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

59 lines 2 kB
/** * **libbluray** - pkgx package * * @domain `videolan.org/libbluray` * @version `1.3.4` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install +videolan.org/libbluray -- $SHELL -i` * @dependencies `freedesktop.org/fontconfig`, `freetype.org`, `darwin:gnome.org/libxml2` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.videolanorglibbluray * console.log(pkg.name) // "libbluray" * console.log(pkg.versions[0]) // "1.3.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/videolan-org/libbluray.md * @see https://ts-pkgx.netlify.app/usage */ export declare const videolanorglibblurayPackage: { /** * The display name of this package. */ name: 'libbluray'; /** * The canonical domain name for this package. */ domain: 'videolan.org/libbluray'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/videolan.org/libbluray/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/libbluray -- $SHELL -i'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['freedesktop.org/fontconfig', 'freetype.org', 'darwin:gnome.org/libxml2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.4']; aliases: readonly [] }; export type VideolanorglibblurayPackage = typeof videolanorglibblurayPackage