{
  "name": "eslint-typegen",
  "type": "module",
  "version": "2.1.0",
  "description": "Generate types from ESLint rule schemas automatically, with auto-completion and type-checking for rule options.",
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  "license": "MIT",
  "funding": "https://github.com/sponsors/antfu",
  "homepage": "https://github.com/antfu/eslint-typegen#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/antfu/eslint-typegen.git"
  },
  "bugs": "https://github.com/antfu/eslint-typegen/issues",
  "keywords": [
    "eslint"
  ],
  "sideEffects": false,
  "exports": {
    ".": "./dist/index.mjs",
    "./core": "./dist/core.mjs"
  },
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "files": [
    "dist"
  ],
  "peerDependencies": {
    "eslint": "^9.0.0"
  },
  "dependencies": {
    "json-schema-to-typescript-lite": "^14.1.0",
    "ohash": "^2.0.11"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^4.10.1",
    "@antfu/ni": "^24.2.0",
    "@types/json-schema": "^7.0.15",
    "@types/node": "^22.13.10",
    "@typescript-eslint/eslint-plugin": "^8.26.1",
    "bumpp": "^10.1.0",
    "eslint": "^9.22.0",
    "eslint-plugin-antfu": "^3.1.1",
    "eslint-plugin-import-x": "^4.6.1",
    "eslint-plugin-jsx-a11y": "^6.10.2",
    "lint-staged": "^15.5.0",
    "pnpm": "^10.6.3",
    "simple-git-hooks": "^2.11.1",
    "tsx": "^4.19.3",
    "typescript": "^5.8.2",
    "unbuild": "^3.5.0",
    "vite": "^6.2.2",
    "vitest": "^3.0.8"
  },
  "simple-git-hooks": {
    "pre-commit": "pnpm lint-staged"
  },
  "lint-staged": {
    "*": "eslint --fix"
  },
  "scripts": {
    "build": "unbuild",
    "dev": "unbuild --stub",
    "lint": "nr build && eslint .",
    "release": "bumpp && pnpm publish",
    "start": "tsx src/index.ts",
    "test": "vitest",
    "typecheck": "tsc --noEmit"
  }
}