{
  "name": "@harnessa-fe/runtime",
  "version": "3.0.0",
  "description": "Browser-side SDK injected into the dev page. Connects to the MCP server via WebSocket and executes commands.",
  "type": "module",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/Morphicai/harnessa-fe.git",
    "directory": "packages/runtime-client"
  },
  "homepage": "https://github.com/Morphicai/harnessa-fe#readme",
  "bugs": {
    "url": "https://github.com/Morphicai/harnessa-fe/issues"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "src",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@zumer/snapdom": "^2.12.0",
    "rrweb": "2.0.0-alpha.4",
    "@harnessa-fe/protocol": "3.0.0"
  },
  "devDependencies": {
    "happy-dom": "^20.9.0",
    "typescript": "^5.6.0",
    "vitest": "^2.1.9"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch --preserveWatchOutput",
    "watch": "tsc --watch --preserveWatchOutput",
    "typecheck": "tsc --noEmit",
    "test": "vitest run"
  }
}