{
  "name": "juce-webview-agent-bridge",
  "version": "0.6.0",
  "description": "Typed, zero-dependency E2E client and CLI for driving live JUCE WebViews over a debug-only loopback bridge, without CDP.",
  "keywords": [
    "juce",
    "webview",
    "wkwebview",
    "webview2",
    "e2e",
    "testing",
    "playwright",
    "agent",
    "automation",
    "debugging",
    "mcp-alternative"
  ],
  "type": "module",
  "types": "./tools/e2e.d.mts",
  "exports": {
    ".": {
      "types": "./tools/e2e.d.mts",
      "import": "./tools/e2e.mjs"
    },
    "./e2e": {
      "types": "./tools/e2e.d.mts",
      "import": "./tools/e2e.mjs"
    },
    "./shared": {
      "types": "./tools/shared.d.mts",
      "import": "./tools/shared.mjs"
    }
  },
  "bin": {
    "juce-webview-agent-bridge": "tools/web-agent.mjs"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "test": "node --test tests/*.test.mjs",
    "test:types": "tsc -p tests/types/tsconfig.json",
    "prepublishOnly": "npm run build && npm test && npm run test:types",
    "release": "bash scripts/release.sh"
  },
  "files": [
    "tools/",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mateusz28011/juce-webview-agent-bridge.git"
  },
  "engines": {
    "node": ">=22"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@types/node": "^24.0.0",
    "typescript": "^5.9.3"
  }
}
