{
  "name": "eslint-vitest-rule-tester",
  "type": "module",
  "version": "2.2.0",
  "description": "ESLint rule tester with Vitest",
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  "license": "MIT",
  "funding": "https://github.com/sponsors/antfu",
  "homepage": "https://github.com/antfu/eslint-vitest-rule-tester#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/antfu/eslint-vitest-rule-tester.git"
  },
  "bugs": "https://github.com/antfu/eslint-vitest-rule-tester/issues",
  "keywords": [
    "eslint",
    "vitest",
    "rule-tester"
  ],
  "sideEffects": false,
  "exports": {
    ".": "./dist/index.mjs"
  },
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "files": [
    "dist"
  ],
  "peerDependencies": {
    "eslint": "^9.0.0",
    "vitest": "^1.0.0 || ^2.0.0 || ^3.0.0"
  },
  "dependencies": {
    "@types/eslint": "^9.6.1",
    "@typescript-eslint/utils": "^8.28.0"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^4.11.0",
    "@antfu/ni": "^24.3.0",
    "@antfu/utils": "^9.1.0",
    "@types/node": "^22.13.14",
    "@typescript-eslint/parser": "^8.28.0",
    "ajv": "^6.12.6",
    "bumpp": "^10.1.0",
    "eslint": "^9.23.0",
    "lint-staged": "^15.5.0",
    "simple-git-hooks": "^2.12.1",
    "taze": "^19.0.2",
    "tsx": "^4.19.3",
    "typescript": "^5.8.2",
    "unbuild": "^3.5.0",
    "vite": "^6.2.3",
    "vitest": "^3.0.9"
  },
  "simple-git-hooks": {
    "pre-commit": "pnpm lint-staged"
  },
  "lint-staged": {
    "*": "eslint --fix"
  },
  "scripts": {
    "build": "unbuild",
    "dev": "unbuild --stub",
    "lint": "eslint",
    "release": "bumpp && pnpm publish",
    "start": "tsx src/index.ts",
    "test": "vitest",
    "typecheck": "tsc --noEmit"
  }
}