{
  "name": "schema-utils",
  "version": "4.5.0",
  "description": "webpack Validation Utils",
  "keywords": [
    "webpack"
  ],
  "homepage": "https://github.com/webpack/schema-utils",
  "bugs": "https://github.com/webpack/schema-utils/issues",
  "repository": "webpack/schema-utils",
  "funding": {
    "type": "opencollective",
    "url": "https://opencollective.com/webpack"
  },
  "license": "MIT",
  "author": "webpack Contrib (https://github.com/webpack-contrib)",
  "main": "dist/index.js",
  "types": "declarations/index.d.ts",
  "files": [
    "dist",
    "declarations"
  ],
  "scripts": {
    "start": "npm run build -- -w",
    "clean": "del-cli dist declarations",
    "prebuild": "npm run clean",
    "build:types": "tsc --declaration --emitDeclarationOnly --outDir declarations && prettier \"declarations/**/*.ts\" --write",
    "build:code": "babel src -d dist --copy-files",
    "build": "npm-run-all -p \"build:**\"",
    "security": "npm audit --production",
    "fmt:check": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
    "lint:code": "eslint --cache .",
    "lint:types": "tsc --pretty --noEmit",
    "lint": "npm-run-all lint:code lint:types fmt:check",
    "fmt": "npm run fmt:check -- --write",
    "fix:code": "npm run lint:code -- --fix",
    "fix": "npm-run-all fix:code fmt",
    "test:only": "jest",
    "test:watch": "npm run test:only -- --watch",
    "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
    "pretest": "npm run lint",
    "test": "npm run test:coverage",
    "prepare": "husky && npm run build",
    "version": "changeset version",
    "release": "npm run build && changeset publish"
  },
  "dependencies": {
    "@types/json-schema": "^7.0.15",
    "ajv": "^8.20.0",
    "ajv-formats": "^3.0.1",
    "ajv-keywords": "^5.1.0"
  },
  "devDependencies": {
    "@babel/cli": "^8.0.4",
    "@babel/core": "^8.0.1",
    "@babel/preset-env": "^8.0.1",
    "@changesets/cli": "^2.31.1",
    "@changesets/get-github-info": "^0.8.0",
    "@types/node": "^26.5.0",
    "babel-jest": "^30.3.0",
    "del": "^8.0.1",
    "del-cli": "^7.0.0",
    "eslint": "^10.10.0",
    "eslint-config-webpack": "^4.9.6",
    "husky": "^9.1.7",
    "jest": "^30.3.0",
    "lint-staged": "^17.5.0",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.9.6",
    "typescript": "^6.0.3",
    "webpack": "^5.110.3"
  },
  "engines": {
    "node": ">= 10.13.0"
  }
}
