{
  "name": "@prisma-next/sql-builder",
  "version": "0.16.0",
  "license": "Apache-2.0",
  "type": "module",
  "sideEffects": false,
  "description": "SQL builder lane for Prisma Next",
  "dependencies": {
    "@prisma-next/contract": "0.16.0",
    "@prisma-next/framework-components": "0.16.0",
    "@prisma-next/sql-contract": "0.16.0",
    "@prisma-next/sql-operations": "0.16.0",
    "@prisma-next/sql-relational-core": "0.16.0"
  },
  "devDependencies": {
    "@prisma-next/adapter-postgres": "0.16.0",
    "@prisma-next/ids": "0.16.0",
    "@prisma-next/sql-contract-ts": "0.16.0",
    "@prisma-next/target-postgres": "0.16.0",
    "@prisma-next/test-utils": "0.16.0",
    "@prisma-next/utils": "0.16.0",
    "@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",
    "./types": "./dist/exports/types.mjs",
    "./runtime": "./dist/runtime/index.mjs",
    "./package.json": "./package.json"
  },
  "engines": {
    "node": ">=24"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/prisma/prisma-next.git",
    "directory": "packages/2-sql/4-lanes/sql-builder"
  },
  "scripts": {
    "build": "tsdown",
    "emit": "cd ../../../../test/integration && node ../../packages/1-framework/3-tooling/cli/dist/cli.js contract emit --config test/sql-builder/fixtures/prisma-next.config.ts && cp test/sql-builder/fixtures/generated/contract.json test/sql-builder/fixtures/generated/contract.d.ts ../../packages/2-sql/4-lanes/sql-builder/test/fixtures/generated/",
    "emit:check": "pnpm emit && git diff --exit-code test/fixtures/generated/",
    "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"
  }
}