{
  "name": "@synapsestudios/eslint-plugin-data-boundaries",
  "version": "1.5.0",
  "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"
  ],
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc --watch",
    "clean": "rm -rf dist",
    "prebuild": "npm run clean",
    "prepublishOnly": "npm run build && npm run lint && npm run format:check && npm test",
    "prepack": "npm run build",
    "test": "jest",
    "test:watch": "jest --watch",
    "lint": "eslint src --ext .ts",
    "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": ">=7.0.0"
  },
  "dependencies": {
    "@mrleebo/prisma-ast": "^0.12.0",
    "@typescript-eslint/utils": "^8.0.0",
    "glob": "^10.3.10"
  },
  "devDependencies": {
    "@types/eslint": "^9.6.1",
    "@types/jest": "^29.5.14",
    "@types/node": "^24.1.0",
    "@typescript-eslint/eslint-plugin": "^8.38.0",
    "@typescript-eslint/parser": "^8.38.0",
    "eslint": "^8.57.1",
    "jest": "^29.7.0",
    "prettier": "^3.6.2",
    "slonik": "^47.3.2",
    "ts-jest": "^29.4.0",
    "typescript": "^5.8.3"
  },
  "engines": {
    "node": ">=14.0.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"
}
