{
  "name": "@masknet/eslint-plugin",
  "packageManager": "pnpm@8.15.1",
  "type": "module",
  "version": "0.3.0",
  "description": "eslint plugin for masknet",
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "eslint",
    "eslint-plugin"
  ],
  "homepage": "https://dimensiondev.github.io/eslint-plugin",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/DimensionDev/eslint-plugin"
  },
  "license": "MIT",
  "main": "lib/index.js",
  "exports": {
    "./schema.json": "./lib/schema.json",
    "./package.json": "./package.json",
    ".": {
      "types": "./lib/index.d.ts",
      "default": "./lib/index.js"
    },
    "./configs/": "./lib/configs/",
    "./rules/": "./lib/rules/"
  },
  "files": [
    "src/",
    "lib/",
    "!src/scripts",
    "!lib/scripts",
    "!src/spec.ts",
    "!lib/spec.*",
    "!lib/**/*.spec.js",
    "!lib/**/*.spec.d.ts"
  ],
  "lint-staged": {
    "*": [
      "prettier --write --ignore-unknown",
      "cspell"
    ]
  },
  "devDependencies": {
    "@changesets/cli": "^2.27.1",
    "@commitlint/config-conventional": "^19.2.2",
    "@masknet/config": "^0.2.1",
    "@types/glob": "^8.1.0",
    "@types/prettier": "^3.0.0",
    "@typescript-eslint/eslint-plugin": "^7.6.0",
    "@typescript-eslint/parser": "^7.6.0",
    "@typescript-eslint/types": "^7.6.0",
    "@typescript-eslint/utils": "^7.6.0",
    "commitlint": "^19.2.2",
    "cspell": "^8.7.0",
    "eslint": "^9.0.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-eslint-plugin": "^6.0.0",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-unicorn": "^52.0.0",
    "eslint-plugin-unused-imports": "^3.1.0",
    "glob": "^10.3.12",
    "globals": "^15.0.0",
    "husky": "^9.0.11",
    "json-schema-to-typescript": "^13.1.2",
    "lint-staged": "^15.2.2",
    "markdownlint-cli": "^0.39.0",
    "prettier": "^3.2.5",
    "ts-dedent": "^2.2.0",
    "ts-node": "^10.9.2",
    "typescript": "^5.4.5",
    "vitest": "^1.5.0"
  },
  "peerDependencies": {
    "eslint": ">= 8"
  },
  "engines": {
    "node": ">= 18"
  },
  "scripts": {
    "generate": "node --loader ts-node/esm/transpile-only ./src/scripts/generate/index.ts",
    "lint": "ESLINT_USE_FLAT_CONFIG=false eslint . --fix",
    "markdownlint": "markdownlint .",
    "spellcheck": "cspell lint --relative --no-progress '**'",
    "test": "vitest",
    "tsc": "tsc -p ."
  }
}