UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.61 kB
/** * **markdownlint** - CLI for Node.js style checker and lint tool for Markdown files * * @domain `github.com/igorshubovych/markdownlint-cli` * @programs `markdownlint` * @version `0.45.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install markdownlint` * @name `markdownlint` * @dependencies `nodejs.org^18` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.markdownlint * // Or access via domain * const samePkg = pantry.githubcomigorshubovychmarkdownlintcli * console.log(pkg === samePkg) // true * console.log(pkg.name) // "markdownlint" * console.log(pkg.description) // "CLI for Node.js style checker and lint tool for..." * console.log(pkg.programs) // ["markdownlint"] * console.log(pkg.versions[0]) // "0.45.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/igorshubovych/markdownlint-cli.md * @see https://ts-pkgx.netlify.app/usage */ export declare const markdownlintPackage: { /** * The display name of this package. */ name: 'markdownlint'; /** * The canonical domain name for this package. */ domain: 'github.com/igorshubovych/markdownlint-cli'; /** * Brief description of what this package does. */ description: 'CLI for Node.js style checker and lint tool for Markdown files'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/igorshubovych/markdownlint-cli/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install markdownlint'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['markdownlint']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['nodejs.org^18']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.45.0', '0.44.0', '0.43.0', '0.42.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) markdownlint -- $SHELL -i'; launchpadInstallCommand: 'launchpad install markdownlint' }; export type MarkdownlintPackage = typeof markdownlintPackage