UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

54 lines 1.8 kB
/** * **openblas.net** - OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version. * * @domain `openblas.net` * @version `0.3.30` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install +openblas.net -- $SHELL -i` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.openblasnet * console.log(pkg.name) // "openblas.net" * console.log(pkg.description) // "OpenBLAS is an optimized BLAS library based on ..." * console.log(pkg.versions[0]) // "0.3.30" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/openblas-net.md * @see https://ts-pkgx.netlify.app/usage */ export declare const openblasnetPackage: { /** * The display name of this package. */ name: 'openblas.net'; /** * The canonical domain name for this package. */ domain: 'openblas.net'; /** * Brief description of what this package does. */ description: 'OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/openblas.net/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +openblas.net -- $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 ['0.3.30', '0.3.29', '0.3.28', '0.3.27', '0.3.26', '0.3.25', '0.3.24', '0.3.23']; aliases: readonly [] }; export type OpenblasnetPackage = typeof openblasnetPackage