UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.18 kB
/** * **doxygen** - Generate documentation for several programming languages * * @domain `doxygen.nl` * @programs `doxygen` * @version `1.14.0` (10 versions available) * @versions From newest version to oldest. * * @install `launchpad install doxygen` * @aliases `doxygen` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.doxygen * // Or access via domain * const samePkg = pantry.doxygennl * console.log(pkg === samePkg) // true * console.log(pkg.name) // "doxygen.nl" * console.log(pkg.description) // "Generate documentation for several programming ..." * console.log(pkg.programs) // ["doxygen"] * console.log(pkg.versions[0]) // "1.14.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/doxygen-nl.md * @see https://ts-pkgx.netlify.app/usage */ export declare const doxygenPackage: { /** * The display name of this package. */ name: 'doxygen.nl'; /** * The canonical domain name for this package. */ domain: 'doxygen.nl'; /** * Brief description of what this package does. */ description: 'Generate documentation for several programming languages'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/doxygen.nl/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install doxygen'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['doxygen']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.14.0', '1.13.2', '1.13.1', '1.13.0', '1.12.0', '1.11.0', '1.10.0', '1.9.8', '1.9.7', '1.9.6']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['doxygen'] }; export type DoxygenPackage = typeof doxygenPackage