{
  "name": "crosspane",
  "version": "0.21.3",
  "description": "Debug web screens where devtools can't reach — a hub dashboard for live @crosspane/agent sessions (webviews, in-app browsers, kiosks) and offline capture replay.",
  "license": "MIT",
  "author": "yunwoo-yu",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/yunwoo-yu/crosspane.git",
    "directory": "packages/cli"
  },
  "homepage": "https://github.com/yunwoo-yu/crosspane#readme",
  "bugs": {
    "url": "https://github.com/yunwoo-yu/crosspane/issues"
  },
  "keywords": [
    "webview",
    "debugging",
    "remote-debugging",
    "in-app-browser",
    "console",
    "devtools",
    "qa",
    "session-replay"
  ],
  "type": "module",
  "bin": {
    "crosspane": "./dist/index.js"
  },
  "main": "./dist/lib.js",
  "types": "./dist/lib.d.ts",
  "exports": {
    ".": {
      "types": "./dist/lib.d.ts",
      "import": "./dist/lib.js"
    },
    "./protocol": {
      "types": "./dist/protocol.d.ts",
      "import": "./dist/protocol.js"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc -b && node ./scripts/bundle-dashboard.mjs",
    "typecheck": "tsc -b && tsc -p tsconfig.test.json",
    "dev": "tsc -b --watch",
    "coverage": "vitest run --coverage",
    "test": "vitest run",
    "test:watch": "vitest",
    "prepublishOnly": "pnpm run build && pnpm test"
  },
  "dependencies": {
    "@crosspane/protocol": "^0.7.0",
    "ws": "^8.18.0"
  },
  "devDependencies": {
    "@types/node": "^26.1.2",
    "@types/ws": "^8.5.13",
    "crosspane-dashboard": "workspace:*",
    "typescript": "^7.0.2",
    "vitest": "^4.1.10"
  },
  "engines": {
    "node": ">=20"
  }
}
