{
  "name": "pqb",
  "version": "0.65.6",
  "description": "Postgres query builder",
  "keywords": [
    "pg",
    "postgres",
    "query-builder"
  ],
  "homepage": "https://orchid-orm.netlify.app/guide/orm-and-query-builder.html",
  "license": "ISC",
  "author": "Roman Kushyn",
  "repository": {
    "type": "git",
    "url": "https://github.com/romeerez/orchid-orm.git",
    "directory": "packages/pqb"
  },
  "files": [
    "dist"
  ],
  "main": "dist/public.js",
  "module": "dist/public.mjs",
  "typings": "dist/public.d.ts",
  "exports": {
    ".": {
      "require": {
        "default": "./dist/public.js",
        "types": "./dist/public.d.ts"
      },
      "import": {
        "default": "./dist/public.mjs",
        "types": "./dist/public.d.ts"
      }
    },
    "./internal": {
      "require": {
        "default": "./dist/internal.js",
        "types": "./dist/internal.d.ts"
      },
      "import": {
        "default": "./dist/internal.mjs",
        "types": "./dist/internal.d.ts"
      }
    },
    "./node-postgres": {
      "require": {
        "default": "./dist/node-postgres.js",
        "types": "./dist/node-postgres.d.ts"
      },
      "import": {
        "default": "./dist/node-postgres.mjs",
        "types": "./dist/node-postgres.d.ts"
      }
    },
    "./postgres-js": {
      "require": {
        "default": "./dist/postgres-js.js",
        "types": "./dist/postgres-js.d.ts"
      },
      "import": {
        "default": "./dist/postgres-js.mjs",
        "types": "./dist/postgres-js.d.ts"
      }
    }
  },
  "dependencies": {
    "@types/pg": ">=8"
  },
  "devDependencies": {
    "zod": "4.3.6",
    "test-utils": "0.3.6"
  },
  "peerDependencies": {
    "pg": ">=8",
    "postgres": ">=3"
  },
  "peerDependenciesMeta": {
    "pg": {
      "optional": true
    },
    "postgres": {
      "optional": true
    }
  },
  "scripts": {
    "test": "jest --watch --verbose false",
    "check": "jest",
    "types": "tsc",
    "test:ci": "jest --coverage --coverageReporters json-summary",
    "build": "rimraf ./dist/ && rolldown -c ./rolldown.config.mjs",
    "lint": "oxlint --fix",
    "lint:check": "oxlint",
    "fmt": "oxfmt",
    "fmt:check": "oxfmt --check"
  }
}