-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.2 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
{
"name": "bb-plugin-browser",
"version": "0.1.0",
"description": "A real browser for bb's agents: one Chromium-family browser, one tab per thread, headless by default.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MGrin/bb-plugin-browser.git"
},
"keywords": [
"bb",
"bb-plugin",
"browser",
"playwright",
"cdp",
"agents"
],
"type": "module",
"engines": {
"bb": ">=0.36",
"bbPluginSdk": "^0.4.1"
},
"bb": {
"name": "Browser",
"description": "One real browser shared by every agent: a tab per thread, and a window you can take over.",
"branding": {
"icon": "Globe"
},
"server": "./server.ts",
"skills": [
"skills"
]
},
"scripts": {
"test": "vitest run",
"typecheck": "tsc --noEmit",
"test:live": "vitest run --config vitest.live.config.ts"
},
"dependencies": {
"playwright-core": "^1.62.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/ws": "^8.5.13",
"hono": "^4.11.9",
"typescript": "^5.7.0",
"vitest": "^4.1.1",
"ws": "^8.18.0"
}
}