-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@beatapi/beat-browser",
"version": "1.2.0",
"description": "BeatBrowser \u2014 MCP + Chrome extension for signed-in Chrome control (BeatAPI).",
"type": "module",
"bin": {
"beat-browser": "src/cli.js"
},
"files": [
"src",
"extension",
"docs",
"media",
"README.md",
"PRIVACY.md",
"scripts",
"test/fixtures/fast-agent.html"
],
"engines": {
"node": ">=20"
},
"scripts": {
"mcp": "node src/cli.js mcp",
"bridge": "node src/cli.js bridge --foreground",
"doctor": "node src/cli.js doctor",
"test": "node --test test/*.test.js",
"check:syntax": "node scripts/check-syntax.mjs",
"check:security": "node scripts/check-security.mjs",
"build:extension": "node scripts/pack-extension.mjs",
"benchmark:offline": "node scripts/benchmark-fast-agent.mjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.22.0",
"ws": "^8.18.3"
},
"keywords": [
"beatbrowser",
"beat-browser",
"mcp",
"chrome",
"browser-automation",
"beatapi",
"x-reply",
"claude-code",
"codex",
"cursor",
"ai-agent"
],
"license": "MIT",
"author": "BeatAPI",
"repository": {
"type": "git",
"url": "git+https://github.com/BeatAPI/beat-browser.git"
},
"homepage": "https://github.com/BeatAPI/beat-browser",
"bugs": {
"url": "https://github.com/BeatAPI/beat-browser/issues"
}
}