{
  "name": "@prisma-next/mongo-query-builder",
  "version": "0.16.0",
  "license": "Apache-2.0",
  "type": "module",
  "sideEffects": false,
  "description": "Type-safe MongoDB query builder (reads, writes, find-and-modify, pipeline-terminal writes) with document shape tracking",
  "dependencies": {
    "@prisma-next/contract": "0.16.0",
    "@prisma-next/mongo-contract": "0.16.0",
    "@prisma-next/mongo-query-ast": "0.16.0",
    "@prisma-next/mongo-value": "0.16.0",
    "@prisma-next/utils": "0.16.0"
  },
  "devDependencies": {
    "@prisma-next/tsconfig": "0.16.0",
    "@prisma-next/tsdown": "0.16.0",
    "tsdown": "0.22.8",
    "typescript": "5.9.3",
    "vitest": "4.1.10"
  },
  "peerDependencies": {
    "typescript": ">=5.9"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "types": "./dist/index.d.mts",
  "exports": {
    ".": "./dist/index.mjs",
    "./contract-free": "./dist/exports/contract-free.mjs",
    "./package.json": "./package.json"
  },
  "engines": {
    "node": ">=24"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/prisma/prisma-next.git",
    "directory": "packages/2-mongo-family/5-query-builders/query-builder"
  },
  "scripts": {
    "build": "tsdown",
    "test": "vitest run --passWithNoTests",
    "test:coverage": "vitest run --coverage --passWithNoTests",
    "typecheck": "tsc --noEmit",
    "lint": "biome check . --error-on-warnings",
    "lint:fix": "biome check --write .",
    "lint:fix:unsafe": "biome check --write --unsafe .",
    "clean": "rm -rf dist dist-tsc dist-tsc-prod coverage .tmp-output"
  }
}