{
  "name": "@crosspane/agent",
  "version": "0.8.2",
  "description": "Tiny in-page debugging agent — capture console/errors/network in webviews and locked-down environments, export or live-stream to the crosspane dashboard",
  "keywords": [
    "webview",
    "debugging",
    "remote-debugging",
    "in-app-browser",
    "console",
    "qa"
  ],
  "license": "MIT",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./standalone": {
      "import": "./dist/crosspane-agent.esm.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "sideEffects": false,
  "scripts": {
    "build": "tsc -b && node scripts/bundle.mjs",
    "typecheck": "tsc -b && tsc -p tsconfig.test.json",
    "coverage": "vitest run --coverage",
    "test": "vitest run"
  },
  "dependencies": {
    "@crosspane/protocol": "^0.7.0"
  },
  "devDependencies": {
    "@types/node": "^26.1.2",
    "esbuild": "^0.28.1",
    "jsdom": "^26.0.0",
    "typescript": "^7.0.2",
    "vitest": "^4.1.10"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/yunwoo-yu/crosspane.git",
    "directory": "packages/agent"
  },
  "publishConfig": {
    "access": "public"
  },
  "author": "yunwoo-yu",
  "homepage": "https://github.com/yunwoo-yu/crosspane/tree/main/packages/agent#readme",
  "bugs": {
    "url": "https://github.com/yunwoo-yu/crosspane/issues"
  },
  "unpkg": "dist/crosspane-agent.global.js",
  "jsdelivr": "dist/crosspane-agent.global.js"
}
