UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.31 kB
/** * **md2html** - C Markdown parser. Fast. SAX-like interface. Compliant to CommonMark specification. * * @domain `github.com/mity/md4c` * @programs `md2html` * @version `0.5.2` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install md2html` * @name `md2html` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.md2html * // Or access via domain * const samePkg = pantry.githubcommitymd4c * console.log(pkg === samePkg) // true * console.log(pkg.name) // "md2html" * console.log(pkg.description) // "C Markdown parser. Fast. SAX-like interface. Co..." * console.log(pkg.programs) // ["md2html"] * console.log(pkg.versions[0]) // "0.5.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/mity/md4c.md * @see https://ts-pkgx.netlify.app/usage */ export declare const md2htmlPackage: { /** * The display name of this package. */ name: 'md2html'; /** * The canonical domain name for this package. */ domain: 'github.com/mity/md4c'; /** * Brief description of what this package does. */ description: 'C Markdown parser. Fast. SAX-like interface. Compliant to CommonMark specification.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/mity/md4c/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install md2html'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['md2html']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.5.2', '0.5.1', '0.5.0', '0.4.8']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) md2html -- $SHELL -i'; launchpadInstallCommand: 'launchpad install md2html' }; export type Md2htmlPackage = typeof md2htmlPackage