UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

54 lines 1.86 kB
/** * **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.1.12` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install +openexr.com/imath -- $SHELL -i` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.openexrcomimath * console.log(pkg.name) // "imath" * console.log(pkg.description) // "Imath is a C++ and python library of 2D and 3D ..." * console.log(pkg.versions[0]) // "3.1.12" (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: '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 -- $SHELL -i'; 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.1.12', '3.1.11', '3.1.10', '3.1.9', '3.1.8', '3.1.7']; aliases: readonly [] }; export type OpenexrcomimathPackage = typeof openexrcomimathPackage