UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

54 lines 1.72 kB
/** * **pugixml.org** - Light-weight, simple and fast XML parser for C++ with XPath support * * @domain `pugixml.org` * @version `1.15.0` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install +pugixml.org -- $SHELL -i` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.pugixmlorg * console.log(pkg.name) // "pugixml.org" * console.log(pkg.description) // "Light-weight, simple and fast XML parser for C+..." * console.log(pkg.versions[0]) // "1.15.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/pugixml-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pugixmlorgPackage: { /** * The display name of this package. */ name: 'pugixml.org'; /** * The canonical domain name for this package. */ domain: 'pugixml.org'; /** * Brief description of what this package does. */ description: 'Light-weight, simple and fast XML parser for C++ with XPath support'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pugixml.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 +pugixml.org -- $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 ['1.15.0', '1.14.0', '1.13.0']; aliases: readonly [] }; export type PugixmlorgPackage = typeof pugixmlorgPackage