{
  "name": "@synapsestudios/eslint-plugin-data-boundaries",
  "version": "2.0.4",
  "description": "ESLint plugin to enforce data boundary policies in modular monoliths",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./parsers/prisma": {
      "types": "./dist/parsers/prisma-parser.d.ts",
      "default": "./dist/parsers/prisma-parser.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc --watch",
    "clean": "rm -rf dist",
    "prebuild": "npm run clean",
    "prepare": "npm run build",
    "prepublishOnly": "npm run build && npm run lint && npm run format:check && npm test",
    "prepack": "npm run build",
    "pretest": "npm run build",
    "test": "jest",
    "test:watch": "jest --watch",
    "lint": "eslint src",
    "format": "prettier --write src/**/*.ts tests/**/*.ts",
    "format:check": "prettier --check src/**/*.ts tests/**/*.ts"
  },
  "keywords": [
    "eslint",
    "eslintplugin",
    "eslint-plugin",
    "prisma",
    "drizzle",
    "drizzle-orm",
    "data-boundaries",
    "modular-monolith",
    "domain-driven-design"
  ],
  "author": "Synapse Studios",
  "license": "MIT",
  "peerDependencies": {
    "eslint": ">=9.0.0"
  },
  "dependencies": {
    "@mrleebo/prisma-ast": "^0.16.0",
    "@typescript-eslint/utils": "^8.56.0",
    "glob": "^13.0.6"
  },
  "overrides": {
    "@mrleebo/prisma-ast": {
      "chevrotain": "^12.0.0"
    }
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/eslint": "^9.6.1",
    "@types/jest": "^30.0.0",
    "@types/node": "^25.9.1",
    "@typescript-eslint/eslint-plugin": "^8.56.0",
    "@typescript-eslint/parser": "^8.56.0",
    "eslint": "^10.0.0",
    "globals": "^17.4.0",
    "jest": "^30.4.1",
    "prettier": "^3.6.2",
    "slonik": "^48.19.0",
    "ts-jest": "^29.4.0",
    "typescript": "^6.0.3"
  },
  "engines": {
    "node": ">=18.18.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/synapsestudios/eslint-plugin-data-boundaries.git"
  },
  "bugs": {
    "url": "https://github.com/synapsestudios/eslint-plugin-data-boundaries/issues"
  },
  "homepage": "https://github.com/synapsestudios/eslint-plugin-data-boundaries#readme"
}
