UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

65 lines 2.2 kB
/** * **LibTomMath** - LibTomMath is a free open source portable number theoretic multiple-precision integer library written entirely in C. * * @domain `libtom.net/math` * @version `1.3.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install LibTomMath` * @name `LibTomMath` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.LibTomMath * // Or access via domain * const samePkg = pantry.libtomnetmath * console.log(pkg === samePkg) // true * console.log(pkg.name) // "LibTomMath" * console.log(pkg.description) // "LibTomMath is a free open source portable numbe..." * console.log(pkg.versions[0]) // "1.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libtom-net/math.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libTomMathPackage: { /** * The display name of this package. */ name: 'LibTomMath'; /** * The canonical domain name for this package. */ domain: 'libtom.net/math'; /** * Brief description of what this package does. */ description: 'LibTomMath is a free open source portable number theoretic multiple-precision integer library written entirely in C.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libtom.net/math/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install LibTomMath'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.0', '1.2.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +libtom.net/math -- $SHELL -i'; launchpadInstallCommand: 'launchpad install LibTomMath' }; export type LibTomMathPackage = typeof libTomMathPackage