{
  "name": "check-dependency-version-consistency",
  "version": "6.0.0",
  "description": "Ensures dependencies are on consistent versions across a monorepo.",
  "keywords": [
    "dependencies",
    "linter",
    "monorepo",
    "nodejs",
    "npm",
    "package.json",
    "packages",
    "pnpm",
    "workspace",
    "yarn"
  ],
  "homepage": "https://github.com/bmish/check-dependency-version-consistency#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/bmish/check-dependency-version-consistency.git"
  },
  "license": "MIT",
  "author": "Bryan Mishkin",
  "type": "module",
  "exports": "./dist/lib/index.js",
  "main": "./dist/lib/index.js",
  "types": "./dist/lib/index.d.ts",
  "bin": {
    "check-dependency-version-consistency": "dist/bin/check-dependency-version-consistency.js"
  },
  "files": [
    "dist/",
    "CHANGELOG.md",
    "README.md"
  ],
  "scripts": {
    "build": "rm -rf dist && tsc --project tsconfig.build.json",
    "lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:*\"",
    "lint:docs": "markdownlint \"**/*.md\"",
    "lint:js": "eslint --cache .",
    "lint:package-json": "npmPkgJsonLint .",
    "lint:package-json-sorting": "sort-package-json --check",
    "lint:package-json-sorting:fix": "sort-package-json package.json",
    "lint:types": "tsgo",
    "prepublishOnly": "npm run build",
    "test": "vitest run --coverage"
  },
  "dependencies": {
    "chalk": "^5.2.0",
    "commander": "^14.0.1",
    "edit-json-file": "^1.7.0",
    "globby": "^16.1.0",
    "js-yaml": "^4.1.0",
    "semver": "^7.5.1",
    "table": "^6.8.1",
    "type-fest": "^5.3.1"
  },
  "devDependencies": {
    "@eslint/js": "^9.29.0",
    "@types/edit-json-file": "^1.7.0",
    "@types/js-yaml": "^4.0.5",
    "@types/mock-fs": "^4.13.1",
    "@types/node": "^25.0.0",
    "@types/semver": "^7.5.0",
    "@typescript/native-preview": "^7.0.0-dev.20250601",
    "@vitest/coverage-v8": "^4.0.0",
    "@vitest/eslint-plugin": "^1.2.1",
    "eslint": "^9.39.2",
    "eslint-config-prettier": "^10.1.5",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-n": "^17.2.0",
    "eslint-plugin-prettier": "^5.5.0",
    "eslint-plugin-unicorn": "^62.0.0",
    "markdownlint-cli": "^0.47.0",
    "mock-fs": "^5.4.1",
    "npm-package-json-lint": "^9.1.0",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.7.4",
    "sort-package-json": "^3.6.0",
    "typescript": "^5.0.4",
    "typescript-eslint": "^8.51.0",
    "vitest": "^4.0.0"
  },
  "engines": {
    "node": "^20.19.0 || ^22.13.1 || >=24.0.0"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  }
}
