UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.36 kB
/** * **xmlwf** - :herb: Fast streaming XML parser written in C99 with >90% test coverage; moved from SourceForge to GitHub * * @domain `libexpat.github.io` * @programs `xmlwf` * @version `2.7.1` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install xmlwf` * @name `xmlwf` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.xmlwf * // Or access via domain * const samePkg = pantry.libexpatgithubio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "xmlwf" * console.log(pkg.description) // ":herb: Fast streaming XML parser written in C99..." * console.log(pkg.programs) // ["xmlwf"] * console.log(pkg.versions[0]) // "2.7.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libexpat-github-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xmlwfPackage: { /** * The display name of this package. */ name: 'xmlwf'; /** * The canonical domain name for this package. */ domain: 'libexpat.github.io'; /** * Brief description of what this package does. */ description: ':herb: Fast streaming XML parser written in C99 with >90% test coverage; moved from SourceForge to GitHub'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libexpat.github.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install xmlwf'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xmlwf']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.7.1', '2.7.0', '2.6.4', '2.6.3', '2.6.2', '2.6.1', '2.6.0', '2.5.0', '2.4.9']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) xmlwf -- $SHELL -i'; launchpadInstallCommand: 'launchpad install xmlwf' }; export type XmlwfPackage = typeof xmlwfPackage