{
  "name": "@kysera/rls",
  "version": "0.8.8",
  "description": "Row-Level Security plugin for Kysely - declarative policies, query transformation, native RLS support",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./native": {
      "types": "./dist/native/index.d.ts",
      "import": "./dist/native/index.js"
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "peerDependencies": {
    "kysely": ">=0.28.14",
    "zod": "^4.3.6",
    "@kysera/executor": "0.8.8",
    "@kysera/repository": "0.8.8"
  },
  "peerDependenciesMeta": {
    "@kysera/executor": {
      "optional": true
    },
    "@kysera/repository": {
      "optional": true
    },
    "zod": {
      "optional": true
    }
  },
  "dependencies": {
    "@kysera/core": "0.8.8"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.13",
    "@types/node": "^25.5.2",
    "@types/pg": "^8.20.0",
    "@vitest/coverage-v8": "^4.1.3",
    "better-sqlite3": "^12.8.0",
    "kysely": "^0.28.15",
    "mysql2": "^3.20.0",
    "pg": "^8.20.0",
    "tsup": "^8.5.1",
    "typescript": "^6.0.2",
    "vitest": "^4.1.3",
    "zod": "^4.3.6",
    "@kysera/executor": "0.8.8",
    "@kysera/repository": "0.8.8"
  },
  "keywords": [
    "kysely",
    "data-access",
    "database",
    "typescript",
    "sql",
    "rls",
    "row-level-security",
    "authorization",
    "access-control",
    "postgres",
    "mysql",
    "sqlite"
  ],
  "author": "Kysera Team",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kysera-dev/kysera.git",
    "directory": "packages/kysera-rls"
  },
  "bugs": {
    "url": "https://github.com/kysera-dev/kysera/issues"
  },
  "homepage": "https://github.com/kysera-dev/kysera#readme",
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "engines": {
    "node": ">=20.0.0",
    "bun": ">=1.0.0"
  },
  "scripts": {
    "build": "tsup && node ../../scripts/fix-node-imports.cjs ./dist async_hooks",
    "dev": "tsup --watch",
    "test": "vitest run",
    "test:watch": "vitest watch",
    "test:coverage": "vitest run --coverage",
    "test:unit": "vitest run test/unit",
    "test:integration": "vitest run test/integration",
    "test:postgres": "TEST_POSTGRES=true vitest run test/integration",
    "test:mysql": "TEST_MYSQL=true vitest run test/integration",
    "test:all-dbs": "TEST_POSTGRES=true TEST_MYSQL=true vitest run test/integration",
    "docker:up": "docker compose -f test/docker/docker-compose.test.yml up -d",
    "docker:down": "docker compose -f test/docker/docker-compose.test.yml down -v",
    "docker:logs": "docker compose -f test/docker/docker-compose.test.yml logs -f",
    "typecheck": "tsc --noEmit -p tsconfig.build.json",
    "lint": "eslint ."
  }
}