{
  "name": "@roomkit/state",
  "version": "1.2.1",
  "description": "High-performance state synchronization library with TypeScript 5.0+ decorators",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./decorators": {
      "types": "./dist/decorators/index.d.ts",
      "import": "./dist/decorators/index.js"
    },
    "./collections": {
      "types": "./dist/collections/index.d.ts",
      "import": "./dist/collections/index.js"
    },
    "./encoding": {
      "types": "./dist/encoding/index.d.ts",
      "import": "./dist/encoding/index.js"
    }
  },
  "scripts": {
    "build": "tsc",
    "build:examples": "tsc --project tsconfig.examples.json",
    "dev": "tsc --watch",
    "clean": "rm -rf dist dist-examples",
    "benchmark": "pnpm build:examples && node dist-examples/benchmarks/performance.js",
    "test": "jest"
  },
  "keywords": [
    "state",
    "synchronization",
    "schema",
    "binary",
    "msgpack",
    "realtime",
    "game"
  ],
  "author": "",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/daxing/gateway-worker.git",
    "directory": "packages/state"
  },
  "bugs": {
    "url": "https://github.com/daxing/gateway-worker/issues"
  },
  "homepage": "https://github.com/daxing/gateway-worker#readme",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@msgpack/msgpack": "^3.0.0-beta2",
    "fast-json-patch": "^3.1.1",
    "pako": "^2.1.0",
    "reflect-metadata": "^0.1.14"
  },
  "devDependencies": {
    "@types/node": "^20.10.0",
    "@types/pako": "^2.0.3",
    "typescript": "^5.3.3"
  }
}
