UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.23 kB
/** * **comrak** - CommonMark + GFM compatible Markdown parser and renderer * * @domain `crates.io/comrak` * @programs `comrak` * @version `0.39.0` (16 versions available) * @versions From newest version to oldest. * * @install `launchpad install comrak` * @name `comrak` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.comrak * // Or access via domain * const samePkg = pantry.cratesiocomrak * console.log(pkg === samePkg) // true * console.log(pkg.name) // "comrak" * console.log(pkg.description) // "CommonMark + GFM compatible Markdown parser and..." * console.log(pkg.programs) // ["comrak"] * console.log(pkg.versions[0]) // "0.39.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/comrak.md * @see https://ts-pkgx.netlify.app/usage */ export declare const comrakPackage: { /** * The display name of this package. */ name: 'comrak'; /** * The canonical domain name for this package. */ domain: 'crates.io/comrak'; /** * Brief description of what this package does. */ description: 'CommonMark + GFM compatible Markdown parser and renderer'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/comrak/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install comrak'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['comrak']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.39.0', '0.38.0', '0.37.0', '0.36.0', '0.35.0', '0.34.0', '0.33.0', '0.32.0', '0.31.0', '0.30.0', '0.29.0', '0.28.0', '0.27.0', '0.26.0', '0.25.0', '0.24.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type ComrakPackage = typeof comrakPackage