UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

56 lines 1.83 kB
/** * **rapidjson.org** - A fast JSON parser/generator for C++ with both SAX/DOM style API * * @domain `rapidjson.org` * @version `1.1.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install rapidjson.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.rapidjsonorg * console.log(pkg.name) // "rapidjson.org" * console.log(pkg.description) // "A fast JSON parser/generator for C++ with both ..." * console.log(pkg.versions[0]) // "1.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/rapidjson-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rapidjsonorgPackage: { /** * The display name of this package. */ name: 'rapidjson.org'; /** * The canonical domain name for this package. */ domain: 'rapidjson.org'; /** * Brief description of what this package does. */ description: 'A fast JSON parser/generator for C++ with both SAX/DOM style API'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/rapidjson.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install rapidjson.org'; 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.1.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +rapidjson.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install rapidjson.org' }; export type RapidjsonorgPackage = typeof rapidjsonorgPackage