{
  "name": "@jupyter/eslint-plugin",
  "version": "1.1.0",
  "description": "ESLint plugin for Jupyter core and extensions with early error catching and best practices enforcement",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "lib"
  ],
  "scripts": {
    "build": "tsc",
    "watch": "tsc --watch",
    "test": "jest",
    "test:watch": "jest --watch",
    "lint": "eslint",
    "lint:fix": "eslint --fix",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "docs:start": "npm --prefix website run start",
    "docs:build": "npm --prefix website run build",
    "docs:serve": "npm --prefix website run serve",
    "docs:clear": "npm --prefix website run clear"
  },
  "keywords": [
    "eslint",
    "eslint-plugin",
    "jupyter",
    "jupyterlab"
  ],
  "author": "Jupyter Development Team",
  "license": "BSD-3-Clause",
  "repository": {
    "type": "git",
    "url": "https://github.com/jupyterlab/eslint-plugin.git"
  },
  "bugs": {
    "url": "https://github.com/jupyterlab/eslint-plugin/issues"
  },
  "homepage": "https://github.com/jupyterlab/eslint-plugin",
  "publishConfig": {
    "access": "public"
  },
  "jupyter-releaser": {
    "hooks": {
      "before-build-npm": [
        "npm install",
        "npm run build"
      ]
    }
  },
  "devDependencies": {
    "@lumino/signaling": "^2.1.6",
    "@lumino/widgets": "^2.9.0",
    "@types/eslint": "^9.6.1",
    "@types/estree": "^1.0.8",
    "@types/jest": "^30.0.0",
    "@types/node": "^25.3.5",
    "@typescript-eslint/eslint-plugin": "^8.54.0",
    "@typescript-eslint/parser": "^8.54.0",
    "@typescript-eslint/rule-tester": "^8.57.0",
    "eslint": "^9.39.2",
    "eslint-plugin": "^1.0.1",
    "jest": "^30.2.0",
    "pre-commit": "^1.2.2",
    "prettier": "^3.8.1",
    "ts-jest": "^29.4.6",
    "typescript": "^5.9.3"
  },
  "dependencies": {
    "@typescript-eslint/utils": "^8.54.0",
    "@typescript-eslint/visitor-keys": "^8.54.0",
    "jsonc-eslint-parser": "^2.4.0"
  },
  "peerDependencies": {
    "eslint": ">=9.0.0"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "pre-commit": [
    "lint",
    "test"
  ]
}
