{
  "name": "@rebasepro/server-postgres",
  "type": "module",
  "version": "0.16.0",
  "description": "PostgreSQL data source backend implementation for Rebase with Drizzle ORM",
  "funding": {
    "url": "https://github.com/sponsors/rebaseco"
  },
  "author": "Rebase",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/rebasepro/rebase.git",
    "directory": "packages/server-postgres"
  },
  "main": "./dist/index.es.js",
  "module": "./dist/index.es.js",
  "types": "./dist/index.d.ts",
  "source": "src/index.ts",
  "engines": {
    "node": ">=20"
  },
  "keywords": [
    "cms",
    "admin",
    "postgresql",
    "database",
    "drizzle",
    "backend",
    "rebase"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "development": "./dist/index.es.js",
      "import": "./dist/index.es.js"
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "@ariga/atlas": "^1.2.3",
    "arg": "^5.0.2",
    "chalk": "^4.1.2",
    "chokidar": "5.0.0",
    "dotenv": "^17.4.2",
    "drizzle-orm": "^0.45.2",
    "execa": "^9.6.1",
    "pg": "^8.22.0",
    "ws": "^8.21.1",
    "@rebasepro/common": "0.16.0",
    "@rebasepro/server": "0.16.0",
    "@rebasepro/types": "0.16.0",
    "@rebasepro/codegen": "0.16.0",
    "@rebasepro/utils": "0.16.0"
  },
  "devDependencies": {
    "@hono/node-server": "^2.0.12",
    "@jest/globals": "^30.4.1",
    "@types/jest": "^30.0.0",
    "@types/node": "^26.1.2",
    "@types/pg": "^8.20.0",
    "@types/ws": "^8.18.1",
    "hono": "^4.13.0",
    "jest": "^30.4.2",
    "ts-jest": "^29.4.12",
    "typescript": "^6.0.3",
    "vite": "^8.1.5",
    "vitest": "^4.1.10"
  },
  "gitHead": "d935eefa5aa8d1009a2398cfac2c1e4ee9aeb6b6",
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "watch": "vite build --watch",
    "build": "vite build && tsc --emitDeclarationOnly -p tsconfig.prod.json && node ../../scripts/assert-build-output.mjs",
    "test:lint": "eslint \"src/**\" --quiet",
    "test": "jest",
    "test:e2e": "vitest run --config vitest.e2e.config.ts",
    "clean": "rm -rf dist && find ./src -name '*.js' -type f | xargs rm -f",
    "smoke:baas": "tsx scripts/smoke-baas.ts",
    "record:project-snapshot": "TSX_TSCONFIG_PATH=../../tsconfig.typecheck.json tsx scripts/record-project-snapshot.mts"
  }
}