UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.9 kB
/** * **exr** - The OpenEXR project provides the specification and reference implementation of the EXR file format, the professional-grade image storage format of the motion picture industry. * * @domain `openexr.com` * @programs `exr2aces`, `exrenvmap`, `exrheader`, `exrmakepreview`, `exrmaketiled`, ... (+3 more) * @version `3.3.4` (20 versions available) * @versions From newest version to oldest. * * @install `launchpad install +openexr.com -- $SHELL -i` * @aliases `exr` * @dependencies `zlib.net^1`, `openexr.com/imath` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.exr * // Or access via domain * const samePkg = pantry.openexrcom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "openexr.com" * console.log(pkg.description) // "The OpenEXR project provides the specification ..." * console.log(pkg.programs) // ["exr2aces", "exrenvmap", ...] * console.log(pkg.versions[0]) // "3.3.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/openexr-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const exrPackage: { /** * The display name of this package. */ name: 'openexr.com'; /** * The canonical domain name for this package. */ domain: 'openexr.com'; /** * Brief description of what this package does. */ description: 'The OpenEXR project provides the specification and reference implementation of the EXR file format, the professional-grade image storage format of the motion picture industry.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/openexr.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 +openexr.com -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['exr2aces', 'exrenvmap', 'exrheader', 'exrmakepreview', 'exrmaketiled', 'exrmultipart', 'exrmultiview', 'exrstdattr']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['zlib.net^1', 'openexr.com/imath']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.3.4', '3.3.3', '3.3.2', '3.3.1', '3.3.0', '3.2.126', '3.2.4', '3.2.3', '3.2.2', '3.2.1', '3.2.0', '3.1.13', '3.1.12', '3.1.11', '3.1.10', '3.1.9', '3.1.8', '3.1.7', '3.1.6', '2.5.10']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['exr'] }; export type ExrPackage = typeof exrPackage