opencode-dashboard-client 0.4.0 → 0.4.1
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/LICENSE.md +21 -0
- package/dist-cli/cli.mjs +4 -2
- package/package.json +4 -2
package/LICENSE.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 GCS-ZHN
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/dist-cli/cli.mjs
CHANGED
|
@@ -23098,9 +23098,10 @@ class StreamableHTTPServerTransport {
|
|
|
23098
23098
|
// package.json
|
|
23099
23099
|
var package_default = {
|
|
23100
23100
|
name: "opencode-dashboard-client",
|
|
23101
|
-
version: "0.4.
|
|
23101
|
+
version: "0.4.1",
|
|
23102
23102
|
type: "module",
|
|
23103
23103
|
description: "Front-end for the opencode token-usage dashboard. Ships the built SPA plus a node CLI (opencode-dashboard serve/configure) that serves the SPA and proxies to dashboard backends.",
|
|
23104
|
+
license: "MIT",
|
|
23104
23105
|
homepage: "https://github.com/GCS-ZHN/opencode-dashboard#readme",
|
|
23105
23106
|
repository: {
|
|
23106
23107
|
type: "git",
|
|
@@ -23114,7 +23115,8 @@ var package_default = {
|
|
|
23114
23115
|
},
|
|
23115
23116
|
files: [
|
|
23116
23117
|
"dist",
|
|
23117
|
-
"dist-cli"
|
|
23118
|
+
"dist-cli",
|
|
23119
|
+
"LICENSE.md"
|
|
23118
23120
|
],
|
|
23119
23121
|
publishConfig: {
|
|
23120
23122
|
access: "public"
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-dashboard-client",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Front-end for the opencode token-usage dashboard. Ships the built SPA plus a node CLI (opencode-dashboard serve/configure) that serves the SPA and proxies to dashboard backends.",
|
|
6
|
+
"license": "MIT",
|
|
6
7
|
"homepage": "https://github.com/GCS-ZHN/opencode-dashboard#readme",
|
|
7
8
|
"repository": {
|
|
8
9
|
"type": "git",
|
|
@@ -16,7 +17,8 @@
|
|
|
16
17
|
},
|
|
17
18
|
"files": [
|
|
18
19
|
"dist",
|
|
19
|
-
"dist-cli"
|
|
20
|
+
"dist-cli",
|
|
21
|
+
"LICENSE.md"
|
|
20
22
|
],
|
|
21
23
|
"publishConfig": {
|
|
22
24
|
"access": "public"
|