-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.3 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
{
"name": "browsirai",
"version": "0.2.1",
"description": "Live browser plugin for AI coding agents. Connect to your running Chrome session via CDP.",
"author": "Mert Koseoglu",
"license": "AGPL-3.0",
"homepage": "https://github.com/mksglu/browsir.ai#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mksglu/browsir.ai.git"
},
"bugs": {
"url": "https://github.com/mksglu/browsir.ai/issues"
},
"type": "module",
"bin": {
"browsirai": "./dist/bin.js"
},
"main": "./dist/server.js",
"files": [
"dist",
"skills"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:run": "vitest run",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@clack/prompts": "^1.1.0",
"@modelcontextprotocol/sdk": "^1.12.1",
"picocolors": "^1.1.1",
"ws": "^8.19.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/node": "^22.15.0",
"@types/ws": "^8.18.1",
"jest-extended": "^7.0.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"browser",
"cdp",
"chrome",
"devtools",
"mcp",
"ai-agent",
"claude-code",
"cursor",
"gemini-cli"
]
}