-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.36 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
{
"name": "bb-plugin-opencode2",
"version": "1.0.1",
"description": "Adds OpenCode 2 to BB with native skills and provider usage monitoring.",
"license": "MIT",
"author": "Flame119052",
"homepage": "https://github.com/Flame119052/bb-plugin-opencode2#readme",
"bugs": {
"url": "https://github.com/Flame119052/bb-plugin-opencode2/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Flame119052/bb-plugin-opencode2.git"
},
"keywords": [
"bb",
"bb-plugin",
"agents",
"usage",
"quota",
"codex",
"claude-code",
"cursor",
"opencode",
"opencode2",
"acp",
"skills",
"mobile"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"engines": {
"bb": ">=0.39.1",
"bbPluginSdk": ">=0.4.14"
},
"bb": {
"name": "OpenCode 2",
"description": "Run OpenCode 2 in BB with native skill routing and shared OpenCode Go usage limits on desktop and mobile.",
"branding": {
"icon": "./assets/icon.svg",
"logo": {
"light": "./assets/logo.svg",
"dark": "./assets/logo-dark.svg"
}
},
"server": "./server.ts",
"app": "./app.tsx",
"host": "./src/bridge/bridge.ts",
"skills": []
},
"files": [
"dist/server.js",
"dist/server.meta.json",
"dist/app.js",
"dist/app.meta.json",
"dist/app.css",
"dist/host.js",
"dist/host.meta.json",
"assets/",
"src/",
"CHANGELOG.md",
"README.md",
"LICENSE",
"THIRD_PARTY_NOTICES.md",
"server.ts",
"app.tsx",
"app.css",
"lib/",
"types/",
"tsconfig.json"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@get-bb/plugin-sdk": "0.4.15",
"@types/better-sqlite3": "^7.6.13",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"jsdom": "^26.1.0",
"typescript": "^5.7.0"
},
"scripts": {
"build": "env -u BB_CLI bb plugin build .",
"dev": "bb plugin dev .",
"typecheck": "tsc --noEmit",
"types:check": "env -u BB_CLI bb plugin types --check .",
"types:refresh": "env -u BB_CLI bb plugin types .",
"test": "node --test --experimental-strip-types test/*.test.ts",
"check": "npm run types:check && npm run typecheck && npm test && npm run build",
"prepack": "npm run check"
}
}