@m64/nats-agent-dashboard 0.1.0
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 +201 -0
- package/README.md +188 -0
- package/bin/dashboard.js +148 -0
- package/dist/THIRD-PARTY-LICENSES.txt +1726 -0
- package/dist/index.html +108 -0
- package/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@m64/nats-agent-dashboard",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Static Vue 3 dashboard for the NATS AI agent network — discover, prompt and manage agents across pi-channel, pi-exec, claude-channel and OpenClaw runtimes from a single screen, with no backend. Ships as a single HTML file or via npx.",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"author": "m64",
|
|
8
|
+
"homepage": "https://github.com/M64GitHub/nats-agent-dashboard#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/M64GitHub/nats-agent-dashboard.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/M64GitHub/nats-agent-dashboard/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"nats",
|
|
18
|
+
"nats-ws",
|
|
19
|
+
"dashboard",
|
|
20
|
+
"vue",
|
|
21
|
+
"ai-agents",
|
|
22
|
+
"pi-agent",
|
|
23
|
+
"claude",
|
|
24
|
+
"openclaw"
|
|
25
|
+
],
|
|
26
|
+
"bin": {
|
|
27
|
+
"nats-agent-dashboard": "./bin/dashboard.js"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"bin",
|
|
31
|
+
"dist",
|
|
32
|
+
"README.md",
|
|
33
|
+
"LICENSE"
|
|
34
|
+
],
|
|
35
|
+
"scripts": {
|
|
36
|
+
"dev": "vite",
|
|
37
|
+
"build": "vite build",
|
|
38
|
+
"preview": "vite preview",
|
|
39
|
+
"start": "node ./bin/dashboard.js",
|
|
40
|
+
"prepack": "npm run build"
|
|
41
|
+
},
|
|
42
|
+
"publishConfig": {
|
|
43
|
+
"access": "public"
|
|
44
|
+
},
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=18.0.0"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@nats-io/nats-core": "^3.3.1",
|
|
50
|
+
"@nats-io/services": "^3.3.0",
|
|
51
|
+
"@vitejs/plugin-vue": "^6.0.1",
|
|
52
|
+
"dompurify": "^3.3.1",
|
|
53
|
+
"highlight.js": "^11.11.1",
|
|
54
|
+
"marked": "^17.0.1",
|
|
55
|
+
"rollup-plugin-license": "^3.7.0",
|
|
56
|
+
"vite": "^7.2.4",
|
|
57
|
+
"vite-plugin-singlefile": "^2.3.2",
|
|
58
|
+
"vue": "^3.5.24"
|
|
59
|
+
}
|
|
60
|
+
}
|