/** * **markdownlint** - CLI for Node.js style checker and lint tool for Markdown files * * @domain `github.com/igorshubovych/markdownlint-cli` * @programs `markdownlint` * @version `0.46.0` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/igorshubovych/markdownlint-cli` * @dependencies `nodejs.org^18` * @buildDependencies `npmjs.com@^10` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomigorshubovychmarkdownlintcli * 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.46.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 markdownlintcliPackage: { /** * 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/igorshubovych/markdownlint-cli'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/igorshubovych/markdownlint-cli'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/igorshubovych/markdownlint-cli -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/igorshubovych/markdownlint-cli'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['markdownlint']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['nodejs.org^18']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['npmjs.com@^10']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.46.0', '0.45.0', '0.44.0', '0.43.0', '0.42.0']; aliases: readonly [] }; export type MarkdownlintcliPackage = typeof markdownlintcliPackage