UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

63 lines 2.33 kB
/** * **fast_float** - Fast and exact implementation of the C++ from_chars functions for number types: 4x to 10x faster than strtod, part of GCC 12, Chromium, Redis and WebKit/Safari * * @domain `github.com/fastfloat/fast_float` * @version `8.0.2` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install +github.com/fastfloat/fast_float -- $SHELL -i` * @name `fast_float` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.fastfloat * // Or access via domain * const samePkg = pantry.githubcomfastfloatfast_float * console.log(pkg === samePkg) // true * console.log(pkg.name) // "fast_float" * console.log(pkg.description) // "Fast and exact implementation of the C++ from_c..." * console.log(pkg.versions[0]) // "8.0.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/fastfloat/fast_float.md * @see https://ts-pkgx.netlify.app/usage */ export declare const fastfloatPackage: { /** * The display name of this package. */ name: 'fast_float'; /** * The canonical domain name for this package. */ domain: 'github.com/fastfloat/fast_float'; /** * Brief description of what this package does. */ description: 'Fast and exact implementation of the C++ from_chars functions for number types: 4x to 10x faster than strtod, part of GCC 12, Chromium, Redis and WebKit/Safari'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/fastfloat/fast_float/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/fastfloat/fast_float -- $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 ['8.0.2', '8.0.1', '8.0.0', '7.0.0', '6.1.6', '6.1.5', '6.1.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type FastfloatPackage = typeof fastfloatPackage