{
  "name": "eslint-plugin-command",
  "type": "module",
  "version": "3.2.0",
  "description": "Comment-as-command for one-off codemod with ESLint",
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  "license": "MIT",
  "funding": "https://github.com/sponsors/antfu",
  "homepage": "https://github.com/antfu/eslint-plugin-command#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/antfu/eslint-plugin-command.git"
  },
  "bugs": "https://github.com/antfu/eslint-plugin-command/issues",
  "keywords": [
    "eslint-plugin",
    "codemod"
  ],
  "sideEffects": false,
  "exports": {
    ".": "./dist/index.mjs",
    "./config": "./dist/config.mjs",
    "./commands": "./dist/commands.mjs",
    "./types": "./dist/types.mjs"
  },
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "files": [
    "dist"
  ],
  "peerDependencies": {
    "eslint": "*"
  },
  "dependencies": {
    "@es-joy/jsdoccomment": "^0.50.0"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^4.10.2",
    "@antfu/ni": "^23.3.1",
    "@antfu/utils": "^9.1.0",
    "@eslint/config-inspector": "^1.0.2",
    "@types/lodash.merge": "^4.6.9",
    "@types/node": "^22.13.10",
    "@types/semver": "^7.5.8",
    "@typescript-eslint/rule-tester": "^8.27.0",
    "@typescript-eslint/typescript-estree": "^8.27.0",
    "@typescript-eslint/utils": "^8.27.0",
    "@vitest/ui": "^3.0.9",
    "bumpp": "^10.1.0",
    "eslint": "^9.22.0",
    "eslint-vitest-rule-tester": "^1.1.0",
    "esno": "^4.8.0",
    "fast-glob": "^3.3.3",
    "lint-staged": "^15.5.0",
    "lodash.merge": "4.6.2",
    "pnpm": "^10.6.5",
    "rimraf": "^6.0.1",
    "semver": "^7.7.1",
    "simple-git-hooks": "^2.12.1",
    "tsup": "^8.4.0",
    "typescript": "^5.8.2",
    "unbuild": "^3.5.0",
    "vite": "^6.2.2",
    "vitest": "^3.0.9"
  },
  "resolutions": {
    "eslint-plugin-command": "workspace:*"
  },
  "simple-git-hooks": {
    "pre-commit": "npx lint-staged"
  },
  "lint-staged": {
    "*": "eslint --fix"
  },
  "scripts": {
    "build": "unbuild",
    "dev": "unbuild --stub",
    "lint": "unbuild && eslint .",
    "release": "bumpp && pnpm publish",
    "start": "esno src/index.ts",
    "test": "vitest",
    "docs": "nr -C docs docs:dev",
    "docs:build": "nr -C docs docs:build",
    "typecheck": "tsc --noEmit"
  }
}