UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

56 lines 2.04 kB
/** * **openexr.com/imath** - Imath is a C++ and python library of 2D and 3D vector, matrix, and math operations for computer graphics * * @domain `openexr.com/imath` * @version `3.2.1` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install openexr.com/imath` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.openexrcomimath * console.log(pkg.name) // "openexr.com/imath" * console.log(pkg.description) // "Imath is a C++ and python library of 2D and 3D ..." * console.log(pkg.versions[0]) // "3.2.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/openexr-com/imath.md * @see https://ts-pkgx.netlify.app/usage */ export declare const openexrcomimathPackage: { /** * The display name of this package. */ name: 'openexr.com/imath'; /** * The canonical domain name for this package. */ domain: 'openexr.com/imath'; /** * Brief description of what this package does. */ description: 'Imath is a C++ and python library of 2D and 3D vector, matrix, and math operations for computer graphics'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/openexr.com/imath/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/imath'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.2.1', '3.2.0', '3.1.12', '3.1.11', '3.1.10', '3.1.9', '3.1.8', '3.1.7']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +openexr.com/imath -- $SHELL -i'; launchpadInstallCommand: 'launchpad install openexr.com/imath' }; export type OpenexrcomimathPackage = typeof openexrcomimathPackage