-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "hermes-control-interface",
"version": "3.5.1",
"description": "Self-hosted web dashboard for the Hermes AI agent stack",
"main": "server.js",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"start": "node server.js",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"serve": "node server.js",
"setup": "bash install.sh",
"test": "node --test",
"reset-password": "node scripts/reset-password.js",
"postinstall": "npm rebuild better-sqlite3",
"changelog": "bash scripts/generate-changelog.sh"
},
"dependencies": {
"@pydantic/genai-prices": "^0.0.56",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.9.0",
"chart.js": "^4.5.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^8.3.2",
"helmet": "^8.1.0",
"js-yaml": "^4.1.1",
"multer": "^2.1.1",
"node-pty": "^1.1.0",
"ws": "^8.18.0",
"yaml": "^2.8.3"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"vite": "^8.0.8"
}
}