{
  "name": "@durable-streams/state",
  "description": "State change event protocol for Durable Streams",
  "version": "0.2.5",
  "author": "Durable Stream contributors",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/durable-streams/durable-streams.git",
    "directory": "packages/state"
  },
  "bugs": {
    "url": "https://github.com/durable-streams/durable-streams/issues"
  },
  "keywords": [
    "durable-streams",
    "state",
    "protocol",
    "typescript"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "sideEffects": false,
  "bin": {
    "intent": "./bin/intent.js"
  },
  "files": [
    "dist",
    "src",
    "state-protocol.schema.json",
    "STATE-PROTOCOL.md",
    "skills",
    "bin",
    "!skills/_artifacts"
  ],
  "dependencies": {
    "@standard-schema/spec": "^1.0.0",
    "@durable-streams/client": "0.2.3"
  },
  "peerDependencies": {
    "@tanstack/db": ">=0.5.0"
  },
  "devDependencies": {
    "@tanstack/db": "latest",
    "@tanstack/intent": "latest",
    "tsdown": "^0.9.0",
    "@durable-streams/server": "0.3.1"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "typecheck": "tsc --noEmit"
  }
}