{
  "name": "@xemahq/kernel-state-runtime",
  "version": "0.7.0",
  "description": "Runtime adapter implementing @xemahq/kernel-state-contracts over etcd. Factory createKernelState(profile) returns the etcd-backed adapter for every deployment profile; etcd is the single KernelState backend.",
  "license": "Apache-2.0",
  "author": "Neuralchowder Inc. <developer@xema.dev> (https://xema.dev)",
  "homepage": "https://xema.dev",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/xema-dev/xema-runtime-core.git",
    "directory": "packages/runtime/kernel-state-runtime"
  },
  "bugs": "https://github.com/xema-dev/xema-runtime-core/issues",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "@types/node": "25.2.3",
    "jest": "^30.3.0",
    "prettier": "3.6.2",
    "ts-jest": "^29.4.9",
    "typescript": "5.9.3",
    "@xemahq/contracts": "^0.16.0"
  },
  "dependencies": {
    "etcd3": "^1.1.2"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "xema-source": "./src/index.ts",
      "default": "./dist/index.js"
    },
    "./dist/lib/*": {
      "types": "./dist/lib/*.d.ts",
      "default": "./dist/lib/*.js"
    }
  },
  "peerDependencies": {
    "@xemahq/contracts": ">=0.2.0"
  },
  "scripts": {
    "clean": "rm -rf dist",
    "build": "tsc -p tsconfig.json",
    "format": "prettier --write \"src/**/*.ts\"",
    "test": "jest --config jest.config.ts",
    "typecheck": "tsc -p tsconfig.json --noEmit"
  }
}