agentflow-dashboard 0.8.3 → 0.9.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/dist/chunk-3RG5ZIWI.js +10 -0
- package/dist/chunk-LZXEKWRO.js +1220 -0
- package/dist/{chunk-E5RJCBK2.js → chunk-NEERJBUV.js} +1866 -361
- package/dist/cli.cjs +6287 -374
- package/dist/cli.js +2 -1
- package/dist/client/assets/index-DgJkzB6k.css +1 -0
- package/dist/client/assets/index-c7yJZALo.js +10 -0
- package/dist/client/index.html +2 -2
- package/dist/dist-H4QMTTY3.js +3223 -0
- package/dist/index.cjs +6287 -374
- package/dist/index.js +2 -1
- package/dist/ops-intel-PL6GGIKL.js +31 -0
- package/dist/server.cjs +6287 -374
- package/dist/server.js +2 -1
- package/package.json +26 -8
- package/dist/client/assets/index-BgEw2MGK.js +0 -50
- package/dist/client/assets/index-DHcSpTgM.css +0 -1
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.9.0",
|
|
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",
|
|
@@ -34,30 +34,36 @@
|
|
|
34
34
|
"test:e2e": "playwright test",
|
|
35
35
|
"test:e2e:server": "tsx tests/e2e/test-server.ts",
|
|
36
36
|
"test:all": "npm run test:unit && npm run test:integration && npm run test:performance && npm run test:e2e",
|
|
37
|
-
"test:ci": "npm run test:unit && npm run test:integration"
|
|
37
|
+
"test:ci": "npm run test:unit && npm run test:integration",
|
|
38
|
+
"prepublishOnly": "npm run build"
|
|
38
39
|
},
|
|
39
40
|
"dependencies": {
|
|
40
|
-
"agentflow-core": "^0.8.
|
|
41
|
+
"agentflow-core": "^0.8.1",
|
|
41
42
|
"chokidar": "^3.5.3",
|
|
42
43
|
"express": "^4.18.2",
|
|
44
|
+
"express-rate-limit": "^8.3.1",
|
|
43
45
|
"react": "^19.1.0",
|
|
44
46
|
"react-dom": "^19.1.0",
|
|
45
47
|
"ws": "^8.16.0"
|
|
46
48
|
},
|
|
47
49
|
"devDependencies": {
|
|
48
50
|
"@playwright/test": "^1.41.0",
|
|
51
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
52
|
+
"@testing-library/react": "^16.3.2",
|
|
53
|
+
"@testing-library/user-event": "^14.6.1",
|
|
49
54
|
"@types/express": "^4.17.21",
|
|
50
55
|
"@types/react": "^19.1.0",
|
|
51
56
|
"@types/react-dom": "^19.1.0",
|
|
52
57
|
"@types/ws": "^8.5.10",
|
|
53
|
-
"@vitejs/plugin-react": "^
|
|
54
|
-
"@vitest/coverage-v8": "^
|
|
58
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
59
|
+
"@vitest/coverage-v8": "^4.1.0",
|
|
55
60
|
"get-port": "^7.0.0",
|
|
61
|
+
"jsdom": "^29.0.1",
|
|
56
62
|
"supertest": "^7.0.0",
|
|
57
63
|
"tsup": "^8.4.0",
|
|
58
64
|
"tsx": "^4.19.0",
|
|
59
|
-
"vite": "^
|
|
60
|
-
"vitest": "^
|
|
65
|
+
"vite": "^8.0.1",
|
|
66
|
+
"vitest": "^4.1.0",
|
|
61
67
|
"ws": "^8.16.0"
|
|
62
68
|
},
|
|
63
69
|
"keywords": [
|
|
@@ -70,5 +76,17 @@
|
|
|
70
76
|
"observability",
|
|
71
77
|
"real-time"
|
|
72
78
|
],
|
|
73
|
-
"license": "
|
|
79
|
+
"license": "Apache-2.0 WITH Commons-Clause-1.0",
|
|
80
|
+
"repository": {
|
|
81
|
+
"type": "git",
|
|
82
|
+
"url": "https://github.com/ClemenceChee/AgentFlow.git"
|
|
83
|
+
},
|
|
84
|
+
"homepage": "https://github.com/ClemenceChee/AgentFlow#readme",
|
|
85
|
+
"bugs": {
|
|
86
|
+
"url": "https://github.com/ClemenceChee/AgentFlow/issues"
|
|
87
|
+
},
|
|
88
|
+
"author": "Clemence Chee",
|
|
89
|
+
"engines": {
|
|
90
|
+
"node": ">=20"
|
|
91
|
+
}
|
|
74
92
|
}
|