{
  "name": "@wsxjs/eslint-plugin-wsx",
  "version": "0.2.0",
  "description": "ESLint plugin for WSXJS",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "src",
    "!**/__tests__",
    "!**/test"
  ],
  "keywords": [
    "eslint",
    "plugin",
    "wsx",
    "web-components"
  ],
  "dependencies": {
    "@wsxjs/wsx-core": "0.2.0"
  },
  "devDependencies": {
    "tsup": "^8.0.0",
    "typescript": "^5.0.0",
    "jest": "^29.0.0",
    "@types/jest": "^29.0.0",
    "ts-jest": "^29.0.0",
    "@types/node": "^20.0.0",
    "@types/estree": "^1.0.0",
    "@typescript-eslint/utils": "^6.0.0",
    "@typescript-eslint/rule-tester": "^6.0.0",
    "@types/eslint": "^8.0.0",
    "eslint": "^8.0.0"
  },
  "peerDependencies": {
    "eslint": ">=8.0.0 || ^9.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup src/index.ts --format cjs,esm --dts --cjs-interop",
    "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist coverage"
  }
}