@openchamber/web 1.4.3 → 1.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli.js +44 -9
- package/dist/assets/{ToolOutputDialog-C7D95isZ.js → ToolOutputDialog-DYNTzpsQ.js} +2 -2
- package/dist/assets/{index-C9fZPpn0.js → index-g64tpi5J.js} +2 -2
- package/dist/assets/index-hru9kOov.css +1 -0
- package/dist/assets/main-BucgrSbb.js +128 -0
- package/dist/assets/{vendor-.bun-B7CnnRlj.js → vendor-.bun-B2HtLj-d.js} +421 -417
- package/dist/index.html +3 -3
- package/package.json +3 -2
- package/server/index.js +904 -97
- package/server/lib/git-service.js +30 -1
- package/server/lib/opencode-config.js +306 -29
- package/dist/assets/index-BFtIIPKJ.css +0 -1
- package/dist/assets/main-DzISCzsJ.js +0 -122
package/dist/index.html
CHANGED
|
@@ -160,10 +160,10 @@
|
|
|
160
160
|
pointer-events: none;
|
|
161
161
|
}
|
|
162
162
|
</style>
|
|
163
|
-
<script type="module" crossorigin src="/assets/index-
|
|
164
|
-
<link rel="modulepreload" crossorigin href="/assets/vendor-.bun-
|
|
163
|
+
<script type="module" crossorigin src="/assets/index-g64tpi5J.js"></script>
|
|
164
|
+
<link rel="modulepreload" crossorigin href="/assets/vendor-.bun-B2HtLj-d.js">
|
|
165
165
|
<link rel="stylesheet" crossorigin href="/assets/vendor--Jn2c0Clh.css">
|
|
166
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
166
|
+
<link rel="stylesheet" crossorigin href="/assets/index-hru9kOov.css">
|
|
167
167
|
</head>
|
|
168
168
|
<body class="h-full bg-background text-foreground">
|
|
169
169
|
<div id="root" class="h-full">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openchamber/web",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./server/index.js",
|
|
@@ -22,10 +22,11 @@
|
|
|
22
22
|
"start": "node bin/cli.js serve"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
+
"qrcode-terminal": "^0.12.0",
|
|
25
26
|
"@fontsource/ibm-plex-mono": "^5.2.7",
|
|
26
27
|
"@fontsource/ibm-plex-sans": "^5.1.1",
|
|
27
28
|
"@ibm/plex": "^6.4.1",
|
|
28
|
-
"@opencode-ai/sdk": "^1.
|
|
29
|
+
"@opencode-ai/sdk": "^1.1.6",
|
|
29
30
|
"@radix-ui/react-collapsible": "^1.1.12",
|
|
30
31
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
31
32
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|