UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

68 lines 2.21 kB
/** * **tbb** - oneAPI Threading Building Blocks (oneTBB) * * @domain `github.com/oneapi-src/oneTBB` * @version `2022.1.0` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install +github.com/oneapi-src/oneTBB -- $SHELL -i` * @aliases `tbb` * @dependencies `python.org~3.11` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.tbb * // Or access via domain * const samePkg = pantry.githubcomoneapisrconetbb * console.log(pkg === samePkg) // true * console.log(pkg.name) // "oneTBB" * console.log(pkg.description) // "oneAPI Threading Building Blocks (oneTBB)" * console.log(pkg.versions[0]) // "2022.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/oneapi-src/oneTBB.md * @see https://ts-pkgx.netlify.app/usage */ export declare const tbbPackage: { /** * The display name of this package. */ name: 'oneTBB'; /** * The canonical domain name for this package. */ domain: 'github.com/oneapi-src/oneTBB'; /** * Brief description of what this package does. */ description: 'oneAPI Threading Building Blocks (oneTBB)'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/oneapi-src/oneTBB/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +github.com/oneapi-src/oneTBB -- $SHELL -i'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org~3.11']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2022.1.0', '2022.0.0', '2021.13.0', '2021.12.0', '2021.11.0', '2021.10.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['tbb'] }; export type TbbPackage = typeof tbbPackage