{
  "name": "@mode-db/server",
  "version": "0.1.12",
  "description": "ModelDB WebSocket server: CLI, config loading, wire transport, and query dispatch. Depends on @mode-db/core for runtime, authoring, and wire serialization APIs.",
  "keywords": [
    "modeldb",
    "websocket",
    "fastify",
    "data-governance"
  ],
  "homepage": "https://github.com/baoyiwen/ModeDB-Ecosystem#readme",
  "bugs": {
    "url": "https://github.com/baoyiwen/ModeDB-Ecosystem/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/baoyiwen/ModeDB-Ecosystem.git",
    "directory": "packages/server"
  },
  "license": "ISC",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "engines": {
    "node": ">=20"
  },
  "bin": {
    "modeldb-server": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "scripts/clear-modeldb-cache.mjs",
    "scripts/install-modeldb-workspace.mjs",
    "templates/modeldb/AGENTS.md",
    "README.md"
  ],
  "dependencies": {
    "@fastify/cors": "^10.0.2",
    "@fastify/websocket": "^11.2.0",
    "commander": "^12.1.0",
    "fastify": "^5.8.4",
    "ws": "^8.18.0",
    "@mode-db/common": "^0.1.9",
    "@mode-db/core": "^1.0.12",
    "@mode-db/shared": "^0.1.11"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@types/node": "^22.10.0",
    "@types/ws": "^8.18.1",
    "typescript": "^5.9.0"
  },
  "scripts": {
    "prebuild": "pnpm -C ../.. run build:shared && pnpm -C ../.. run build:common && pnpm -C ../.. run build:core",
    "pretypecheck": "pnpm -C ../.. run build:shared && pnpm -C ../.. run build:common && pnpm -C ../.. run build:core",
    "build": "tsc -p tsconfig.json",
    "typecheck": "tsc --noEmit -p tsconfig.json",
    "postinstall": "node ./scripts/install-modeldb-workspace.mjs",
    "postuninstall": "node ./scripts/clear-modeldb-cache.mjs"
  }
}