agentflow-dashboard 0.7.1 → 0.8.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/dist/{chunk-3S4AAIPA.js → chunk-JRVE5NM3.js} +644 -171
- package/dist/cli.cjs +648 -175
- package/dist/cli.js +1 -1
- package/dist/client/assets/index-CyQ7qX-x.js +50 -0
- package/dist/client/assets/{index-Ds_npIxI.css → index-DHcSpTgM.css} +1 -1
- package/dist/client/index.html +2 -2
- package/dist/index.cjs +648 -175
- package/dist/index.js +1 -1
- package/dist/server.cjs +648 -175
- package/dist/server.js +1 -1
- package/package.json +3 -5
- package/dist/client/assets/index-DSuI0NgP.js +0 -50
- package/dist/client/dashboard.js +0 -3113
- package/dist/public/dashboard.js +0 -3113
- package/dist/public/index.html +0 -1385
- package/public/dashboard.js +0 -3113
- package/public/index.html +0 -1385
package/dist/server.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentflow-dashboard",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Real-time monitoring dashboard for AgentFlow - Visualize agent execution graphs and performance",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -17,12 +17,10 @@
|
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"dist",
|
|
20
|
-
"bin"
|
|
21
|
-
"public"
|
|
20
|
+
"bin"
|
|
22
21
|
],
|
|
23
22
|
"scripts": {
|
|
24
|
-
"build": "tsup src/index.ts src/cli.ts src/server.ts --format esm,cjs --clean && npm run build:
|
|
25
|
-
"build:public": "cp -r public dist/",
|
|
23
|
+
"build": "tsup src/index.ts src/cli.ts src/server.ts --format esm,cjs --clean && npm run build:client",
|
|
26
24
|
"build:client": "vite build",
|
|
27
25
|
"dev": "tsx src/server.ts",
|
|
28
26
|
"dev:client": "vite",
|