{
  "name": "eslint-plugin-react-hooks-addons",
  "version": "0.5.1",
  "author": "Zheng Song",
  "license": "MIT",
  "description": "ESLint rule to check unused and potentially unnecessary dependencies in React Hooks.",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/szhsin/eslint-plugin-react-hooks-addons.git"
  },
  "homepage": "https://github.com/szhsin/eslint-plugin-react-hooks-addons",
  "main": "./dist/cjs/index.cjs",
  "types": "./types/index.d.ts",
  "sideEffects": false,
  "files": [
    "dist/",
    "types/"
  ],
  "keywords": [
    "eslint",
    "eslint-plugin",
    "eslintplugin",
    "react",
    "hook"
  ],
  "scripts": {
    "start": "run-p watch \"types -- --watch\"",
    "bundle": "rollup -c",
    "watch": "rollup -c -w",
    "clean": "rm -Rf ./dist ./types",
    "types": "tsc",
    "test": "node tests/rules/*.js",
    "pret": "prettier -c .",
    "pret:fix": "prettier -w .",
    "lint": "oxlint --type-aware --ignore-pattern=examples",
    "eg": "cd examples && npm run lint",
    "build": "run-s pret clean types lint bundle"
  },
  "peerDependencies": {
    "eslint": ">=3.0.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.28.6",
    "@babel/core": "^7.29.0",
    "@babel/preset-env": "^7.29.0",
    "@babel/preset-typescript": "^7.28.5",
    "@rollup/plugin-babel": "^6.1.0",
    "@rollup/plugin-json": "^6.1.0",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "deplift": "^1.1.1",
    "eslint": "^10.0.0",
    "npm-run-all": "^4.1.5",
    "oxlint": "^1.43.0",
    "oxlint-tsgolint": "^0.11.5",
    "prettier": "^3.8.1",
    "rollup": "^4.57.1",
    "typescript": "^5.9.3"
  }
}
