-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.42 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
98
99
100
101
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@neriousy/opencode-browser",
"version": "0.5.0",
"description": "An Electron browser surface for the OpenCode v2 TUI",
"keywords": [
"opencode",
"tui",
"browser",
"electron",
"mcp",
"opentui"
],
"packageManager": "bun@1.3.14",
"homepage": "https://github.com/neriousy/opencode-browser#readme",
"author": "neriousy",
"bugs": {
"url": "https://github.com/neriousy/opencode-browser/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/neriousy/opencode-browser.git"
},
"bin": {
"opencode-browser-controller-mcp": "dist/controller-mcp.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"exports": {
"./tui": {
"types": "./dist/tui.d.ts",
"import": "./dist/tui.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bun scripts/build.ts",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:mcp": "bun scripts/smoke-devtools-mcp.ts",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"check": "bun run format:check && bun run typecheck && bun test && bun run build",
"test:packed": "bun run build && bun scripts/test-packed.ts",
"prepack": "bun run check"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.30.0",
"chrome-devtools-mcp": "1.6.0",
"effect": "4.0.0-beta.101",
"electron": "43.2.0"
},
"devDependencies": {
"@opencode-ai/plugin": "0.0.0-next-16650",
"@opencode-ai/theme": "0.0.0-next-16650",
"@opentui/core": "0.4.5",
"@opentui/keymap": "0.4.5",
"@opentui/solid": "0.4.5",
"@types/bun": "latest",
"@types/node": "^24.0.0",
"opentui-browser": "0.3.2",
"oxfmt": "0.41.0",
"solid-js": "1.9.12",
"typescript": "^5"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=0.0.0-next-16650 <0.1.0",
"@opentui/core": "^0.4.5",
"@opentui/keymap": "^0.4.5",
"@opentui/solid": "^0.4.5",
"solid-js": ">=1.9.10 <2"
},
"peerDependenciesMeta": {
"@opencode-ai/plugin": {
"optional": true
},
"@opentui/core": {
"optional": true
},
"@opentui/keymap": {
"optional": true
},
"@opentui/solid": {
"optional": true
},
"solid-js": {
"optional": true
}
},
"engines": {
"bun": ">=1.3.0",
"node": ">=22.12.0"
}
}