-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.7 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 4.7 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@vibebrowser/mcp",
"mcpName": "io.github.VibeTechnologies/vibe-mcp",
"version": "0.3.6",
"type": "module",
"description": "MCP server that drives your real, logged-in Chrome from any MCP client - including agents on a remote machine, with no inbound port open",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"workspaces": [
"packages/*"
],
"bin": {
"mcp": "./dist/cli.js",
"vibebrowser-mcp": "./dist/cli.js",
"vibe-mcp": "./dist/cli.js",
"vibebrowser-cli": "./dist/browser-main.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && node scripts/prepare-cli-package.mjs",
"dev": "tsc --watch",
"doctor": "node scripts/doctor.mjs",
"start": "node dist/cli.js",
"validate:skill": "node scripts/validate-skill.mjs openclaw/vibebrowser/SKILL.md",
"prepublishOnly": "npm run build",
"test": "npm run test:unit && npm run test:e2e:docs-contract && npm run test:e2e:relay-race && npm run test:e2e:relay-roundtrip && npm run test:e2e:relay-heartbeat-pong && npm run test:e2e:relay-version-handshake && npm run test:e2e:cli-relay && npm run test:e2e:cli-autospawn && npm run test:e2e:http && npm run test:e2e:uuid-only-auth && npm run test:e2e:remote-lifecycle && npm run test:e2e:tool-annotations && npm run test:e2e:tools-list-budget && npm run test:e2e:browser-cli && npm run test:e2e:cli-package && npm run test:e2e:devtools-flag",
"test:ci": "npm run test:unit && npm run test:e2e:docs-contract && npm run test:e2e:relay-race && npm run test:e2e:relay-roundtrip && npm run test:e2e:relay-heartbeat-pong && npm run test:e2e:relay-version-handshake && npm run test:e2e:cli-relay && npm run test:e2e:cli-autospawn && npm run test:e2e:http && npm run test:e2e:uuid-only-auth && npm run test:e2e:remote-lifecycle && npm run test:e2e:tool-annotations && npm run test:e2e:tools-list-budget && npm run test:e2e:browser-cli && npm run test:e2e:cli-package && npm run test:e2e:devtools-flag",
"test:unit": "npx tsx --test scripts/unit/restricted-url.test.ts",
"test:e2e:docs-contract": "node scripts/e2e-docs-contract.mjs",
"test:e2e:tool-annotations": "node scripts/e2e-tool-annotations.mjs",
"test:e2e:tools-list-budget": "node scripts/e2e-tools-list-startup-budget.mjs",
"test:e2e:browser-cli": "node scripts/e2e-browser-cli.mjs",
"test:e2e:cli-relay": "node scripts/e2e-cli-relay.mjs",
"test:e2e:cli-autospawn": "node scripts/e2e-cli-autospawn.mjs",
"test:e2e:http": "node scripts/e2e-http-streamable.mjs",
"test:e2e:uuid-only-auth": "node scripts/e2e-uuid-only-auth.mjs",
"test:e2e:remote-lifecycle": "node scripts/e2e-remote-lifecycle.mjs",
"test:e2e:devtools-flag": "node scripts/e2e-devtools-flag.mjs",
"test:e2e:cli-package": "node scripts/e2e-cli-package-smoke.mjs",
"test:e2e:browser-cli-live": "node scripts/e2e-browser-cli-live.mjs",
"test:e2e:relay-race": "node scripts/e2e-relay-fake-extension-race.mjs",
"test:e2e:relay-roundtrip": "node scripts/e2e-relay-roundtrip.mjs",
"test:e2e:relay-heartbeat-pong": "node scripts/e2e-relay-heartbeat-pong.mjs",
"test:e2e:relay-version-handshake": "node scripts/e2e-relay-version-handshake.mjs",
"test:e2e:agents": "node scripts/e2e-mcp-agents.mjs",
"build:mcpb": "node mcpb/build.mjs",
"test:e2e:plugin-bundle": "node scripts/e2e-plugin-bundle.mjs"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"browser-automation",
"chrome-automation",
"web-automation",
"ai-agent",
"ai-browser",
"multi-agent",
"claude-desktop",
"cursor",
"windsurf",
"vscode-copilot",
"opencode",
"playwright-alternative",
"puppeteer-alternative",
"browser-mcp",
"web-scraping",
"vibe",
"vibebrowser",
"remote-browser",
"logged-in-browser",
"chrome-extension",
"browser-control",
"claude",
"mcp-browser",
"real-browser",
"chrome-devtools-mcp-alternative"
],
"author": "Vibe Technologies",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/VibeTechnologies/vibe-mcp.git"
},
"homepage": "https://vibebrowser.app",
"bugs": {
"url": "https://github.com/VibeTechnologies/vibe-mcp/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"commander": "^12.0.0",
"ws": "^8.18.0"
},
"optionalDependencies": {
"chrome-devtools-mcp": "^0.21.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/ws": "^8.5.0",
"typescript": "^5.0.0"
},
"files": [
"LICENSE",
"README.md",
"dist",
"docs/chrome-devtools-relay.md",
"docs/openclaw-local-browser.md",
"openclaw",
"server.json"
]
}