{
  "name": "@zotero-plugin/eslint-config",
  "type": "module",
  "version": "0.6.9",
  "description": "ESLint config for zotero plugin.",
  "license": "AGPL-3.0-or-later",
  "homepage": "https://github.com/zotero-plugin-dev/eslint-config#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/zotero-plugin-dev/eslint-config.git"
  },
  "bugs": {
    "url": "https://github.com/zotero-plugin-dev/eslint-config/issues"
  },
  "exports": {
    ".": "./dist/index.mjs",
    "./package.json": "./package.json"
  },
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": "^18.18.0 || >=20.0.0"
  },
  "peerDependencies": {
    "eslint": "^9.10.0 || ^10.0.3"
  },
  "dependencies": {
    "@eslint/js": "^10.0.1",
    "eslint-config-flat-gitignore": "^2.2.1",
    "eslint-plugin-chai-friendly": "^1.1.1",
    "eslint-plugin-mocha": "^11.2.0",
    "typescript-eslint": "^8.57.1"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^7.7.3",
    "@eslint/config-inspector": "^1.5.0",
    "@types/node": "^25.5.0",
    "bumpp": "^10.4.1",
    "eslint": "^10.0.3",
    "eslint-plugin-format": "^2.0.1",
    "eslint-typegen": "^2.3.1",
    "husky": "^9.1.7",
    "lint-staged": "^16.4.0",
    "prettier": "^3.8.1",
    "tsdown": "^0.21.4",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3"
  },
  "lint-staged": {
    "*": [
      "prettier --write",
      "eslint --fix"
    ]
  },
  "prettier": {},
  "scripts": {
    "dev:tsdown": "tsdown --watch src",
    "dev:inspector": "eslint-config-inspector --config ./playground/eslint-inspector.config.ts --basePath playground",
    "build": "pnpm build:typegen && pnpm build:tsc && pnpm build:tsdown",
    "build:tsdown": "tsdown",
    "build:typegen": "tsx scripts/typegen.ts",
    "build:tsc": "tsc --noEmit",
    "build:inspector": "eslint-config-inspector build --config ./playground/eslint-inspector.config.ts --basePath playground",
    "typecheck": "tsc --noEmit",
    "lint:check": "prettier --check . && eslint .",
    "lint:fix": "prettier --write . && eslint . --fix",
    "release": "bumpp --commit \"chore(release): publish v%s\"",
    "update:deps": "pnpx taze minor -w -f -l -r"
  }
}