forked from EKKOLearnAI/hermes-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
179 lines (179 loc) · 6.51 KB
/
Copy pathpackage.json
File metadata and controls
179 lines (179 loc) · 6.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
"name": "hermes-web-ui",
"version": "0.7.1",
"description": "Self-hosted AI chat dashboard for Hermes Agent — multi-model web UI with multi-platform integration",
"repository": {
"type": "git",
"url": "https://github.com/EKKOLearnAI/hermes-studio.git"
},
"homepage": "https://hermes-studio.ai",
"license": "BSL-1.1",
"engines": {
"node": ">=23.0.0"
},
"keywords": [
"hermes",
"hermes-agent",
"hermes-web",
"agent",
"ai",
"ai-agent",
"ai-chat",
"ai-dashboard",
"llm",
"multi-model",
"chat-ui",
"dashboard",
"self-hosted",
"multi-platform",
"vue3",
"typescript"
],
"bin": {
"hermes-web-ui": "./bin/hermes-web-ui.mjs",
"hermes-web-ui-mcp": "./bin/hermes-studio-mcp.mjs",
"hermes-studio-mcp": "./bin/hermes-studio-mcp.mjs"
},
"scripts": {
"start": "vite --host --port 8648",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:client": "cross-env HERMES_WEB_UI_BACKEND_PORT=8647 vite --host --port 8649 --strictPort",
"dev:server": "nodemon",
"build": "npm run openapi:generate && vue-tsc -b && vite build && tsc --noEmit -p packages/server/tsconfig.json && node scripts/build-server.mjs",
"harness:check": "node scripts/harness-check.mjs && npm --prefix packages/ekko-agent run api:docs:check",
"harness:memory": "vitest run tests/ekko-agent/memory-service.test.ts tests/server/group-chat-agent-workspace.test.ts tests/server/run-chat-ekko-context.test.ts",
"test:ekko-agent": "vitest run tests/ekko-agent",
"build:ekko-agent": "npm --prefix packages/ekko-agent run build",
"verify:sharp-runtime": "node scripts/verify-sharp-runtime.mjs",
"prepare": "[ -d dist ] || npm run build",
"preview": "NODE_ENV=production vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:pi-rpc-real": "cross-env PI_REAL_RPC_E2E=1 vitest run tests/server/pi-rpc-real.test.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"mcu:v1:flash:clean": "pio run -d packages/esp32-c3/v1 && pio run -d packages/esp32-c3/v1 -t erase && pio run -d packages/esp32-c3/v1 -t upload",
"mcu:v2:flash:clean": "pio run -d packages/esp32-c3/v2 && pio run -d packages/esp32-c3/v2 -t erase && pio run -d packages/esp32-c3/v2 -t upload",
"mcu:flash:clean": "npm run mcu:v1:flash:clean",
"desktop:install": "npm ci --prefix packages/desktop --no-audit --no-fund",
"desktop:prepare-runtime": "npm --prefix packages/desktop run prepare:runtime",
"desktop:prepare-python": "npm --prefix packages/desktop run prepare:python",
"desktop:dev": "node scripts/desktop-dev.mjs",
"build:desktop": "npm run build && npm run desktop:install && npm --prefix packages/desktop run dist -- --publish never",
"build:desktop:mac": "npm run build && npm run desktop:install && npm --prefix packages/desktop run dist -- --mac --publish never",
"build:desktop:win": "npm run build && npm run desktop:install && npm --prefix packages/desktop run dist -- --win --publish never",
"build:desktop:linux": "npm run build && npm run desktop:install && npm --prefix packages/desktop run dist -- --linux --publish never",
"openapi:generate": "node scripts/generate-openapi.mjs",
"claude": "claude --dangerously-skip-permissions",
"test:workflow-live": "vite-node scripts/workflow-live-acceptance.ts"
},
"files": [
"bin/",
"dist/"
],
"dependencies": {
"@audio/decode-mp3": "^1.1.0",
"@audio/decode-wav": "^1.2.0",
"@larksuiteoapi/node-sdk": "^1.73.0",
"@modelcontextprotocol/client": "^2.0.0",
"@vscode/markdown-it-katex": "^1.1.2",
"@vue-flow/background": "^1.3.2",
"@vue-flow/controls": "^1.1.3",
"@vue-flow/core": "^1.48.2",
"@vue-flow/minimap": "^1.5.4",
"@vue-flow/node-resizer": "^1.5.1",
"adm-zip": "^0.6.0",
"agent-browser": "^0.26.0",
"eventsource": "^4.1.0",
"js-tiktoken": "^1.0.21",
"katex": "^0.17.0",
"node-edge-tts": "^1.2.10",
"node-pty": "^1.1.0",
"sharp": "^0.35.3",
"sherpa-onnx-node": "1.13.3",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3"
},
"optionalDependencies": {
"sherpa-onnx-darwin-arm64": "1.13.3",
"sherpa-onnx-darwin-x64": "1.13.3",
"sherpa-onnx-linux-arm64": "1.13.3",
"sherpa-onnx-linux-x64": "1.13.3",
"sherpa-onnx-win-ia32": "1.13.3",
"sherpa-onnx-win-x64": "1.13.3"
},
"devDependencies": {
"@aiden0z/pptx-renderer": "^1.2.4",
"@koa/bodyparser": "^5.0.0",
"@koa/cors": "^5.0.0",
"@koa/router": "^15.4.0",
"@multiavatar/multiavatar": "^1.0.7",
"@pinia/testing": "^1.0.3",
"@playwright/test": "^1.60.0",
"@types/adm-zip": "^0.5.8",
"@types/eventsource": "^1.1.15",
"@types/js-yaml": "^4.0.9",
"@types/katex": "^0.16.8",
"@types/koa": "^2.15.0",
"@types/koa__cors": "^5.0.0",
"@types/koa__router": "^12.0.5",
"@types/koa-send": "^4.1.6",
"@types/koa-static": "^4.0.4",
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.12.2",
"@types/qrcode": "^1.5.6",
"@types/ws": "^8.18.1",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/coverage-v8": "^3.2.4",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.9.1",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"axios": "^1.9.0",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"docx-preview": "^0.3.7",
"esbuild": "^0.27.0",
"highlight.js": "^11.11.1",
"js-yaml": "^4.1.1",
"jsdom": "^27.0.1",
"koa": "^2.15.3",
"koa-send": "^5.0.1",
"koa-static": "^5.0.0",
"markdown-it": "^14.1.1",
"mermaid": "^11.14.0",
"monaco-editor": "^0.55.1",
"naive-ui": "^2.44.1",
"nodemon": "^3.1.14",
"pdfjs-dist": "^5.7.284",
"pinia": "^3.0.4",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"qrcode": "^1.5.4",
"read-excel-file": "^7.0.3",
"sass": "^1.99.0",
"tar": "^7.5.16",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsoa": "^7.0.0-alpha.0",
"typescript": "~6.0.2",
"vite": "^8.0.4",
"vitest": "^3.2.4",
"vue": "^3.5.32",
"vue-i18n": "^11.3.2",
"vue-router": "^4.6.4",
"vue-tsc": "^3.2.8",
"vue-virtual-scroller": "^3.0.4",
"ws": "^8.20.0"
},
"overrides": {
"sherpa-onnx-darwin-arm64": "1.13.3",
"sherpa-onnx-darwin-x64": "1.13.3",
"sherpa-onnx-linux-arm64": "1.13.3",
"sherpa-onnx-linux-x64": "1.13.3",
"sherpa-onnx-win-ia32": "1.13.3",
"sherpa-onnx-win-x64": "1.13.3"
}
}