-
Notifications
You must be signed in to change notification settings - Fork 494
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"name": "@browsermcp/mcp",
"version": "0.1.3",
"description": "MCP server for browser automation using Browser MCP",
"author": "Browser MCP",
"homepage": "https://browsermcp.io",
"bugs": "https://github.com/browsermcp/mcp/issues",
"type": "module",
"bin": {
"mcp-server-browsermcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsup src/index.ts --format esm && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsup src/index.ts --format esm --watch ",
"inspector": "CLIENT_PORT=9001 SERVER_PORT=9002 pnpx @modelcontextprotocol/inspector node dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"commander": "^13.1.0",
"ws": "^8.18.1",
"zod": "^3.24.2",
"zod-to-json-schema": "^3.24.3"
},
"devDependencies": {
"@r2r/messaging": "workspace:*",
"@repo/config": "workspace:*",
"@repo/messaging": "workspace:*",
"@repo/types": "workspace:*",
"@repo/utils": "workspace:*",
"@types/ws": "^8.18.0",
"shx": "^0.3.4",
"tsup": "^8.4.0",
"typescript": "^5.6.2"
}
}