UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.48 kB
/** * **fend** - Arbitrary-precision unit-aware calculator * * @domain `printfn.github.io/fend` * @programs `fend` * @version `1.5.7` (19 versions available) * @versions From newest version to oldest. * * @install `launchpad install fend` * @name `fend` * @dependencies `openssl.org^1.1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.fend * // Or access via domain * const samePkg = pantry.printfngithubiofend * console.log(pkg === samePkg) // true * console.log(pkg.name) // "fend" * console.log(pkg.description) // "Arbitrary-precision unit-aware calculator" * console.log(pkg.programs) // ["fend"] * console.log(pkg.versions[0]) // "1.5.7" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/printfn-github-io/fend.md * @see https://ts-pkgx.netlify.app/usage */ export declare const fendPackage: { /** * The display name of this package. */ name: 'fend'; /** * The canonical domain name for this package. */ domain: 'printfn.github.io/fend'; /** * Brief description of what this package does. */ description: 'Arbitrary-precision unit-aware calculator'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/printfn.github.io/fend/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install fend'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['fend']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^1.1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.5.7', '1.5.6', '1.5.5', '1.5.3', '1.5.2', '1.5.1', '1.5.0', '1.4.9', '1.4.8', '1.4.7', '1.4.6', '1.4.5', '1.4.4', '1.4.3', '1.4.2', '1.4.1', '1.4.0', '1.3.3', '1.3.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) fend -- $SHELL -i'; launchpadInstallCommand: 'launchpad install fend' }; export type FendPackage = typeof fendPackage