-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 752 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 752 Bytes
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
{
"name": "ubrowser",
"version": "1.0.1",
"description": "μBrowser - Micro browser automation with 98% token reduction",
"type": "module",
"main": "build/index.js",
"bin": {
"ubrowser": "./build/index.js"
},
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsc --watch"
},
"keywords": [
"mcp",
"browser",
"automation",
"playwright",
"claude",
"micro",
"token-efficient"
],
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@modelcontextprotocol/sdk": "^1.12.1",
"playwright": "^1.49.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.10.5",
"typescript": "^5.7.2"
},
"files": [
"build"
]
}