-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.66 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.66 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
{
"name": "hermes-workspace",
"version": "2.0.0",
"description": "Desktop workspace for Hermes Agent — chat, orchestration, and multi-agent coding pipelines",
"author": "Eric (https://github.com/outsourc-e)",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "NODE_OPTIONS=\"--max-old-space-size=2048\" vite dev",
"build": "vite build",
"start:all": "concurrently \"hermes gateway run\" \"pnpm dev\"",
"start": "NODE_OPTIONS=\"--max-old-space-size=2048\" node .output/server/index.mjs",
"start:dev": "NODE_OPTIONS=\"--max-old-space-size=2048\" vite dev",
"preview": "vite preview",
"test": "vitest run",
"smoke:managed": "node scripts/managed-companion-smoke.mjs",
"lint": "eslint",
"format": "prettier",
"check": "prettier --write . && eslint --fix"
},
"dependencies": {
"@base-ui/react": "^1.1.0",
"@hugeicons/core-free-icons": "^3.1.1",
"@hugeicons/react": "^1.1.4",
"@lobehub/icons": "^5.0.1",
"@lobehub/icons-static-png": "^1.83.0",
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-query": "^5.84.1",
"@tanstack/react-router": "^1.132.0",
"@tanstack/react-router-devtools": "^1.132.0",
"@tanstack/react-router-ssr-query": "^1.131.7",
"@tanstack/react-start": "^1.132.0",
"@tanstack/router-plugin": "^1.132.0",
"@types/react-grid-layout": "^1.3.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"marked": "^17.0.1",
"motion": "^12.29.2",
"playwright": "^1.58.2",
"playwright-extra": "^4.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-joyride": "^2.9.3",
"react-markdown": "^10.1.0",
"recharts": "^3.7.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"shiki": "^3.21.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"vite-tsconfig-paths": "^6.0.2",
"ws": "^8.19.0",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"xterm-addon-search": "^0.13.0",
"xterm-addon-web-links": "^0.9.0",
"yaml": "^2.8.2",
"zod": "^3.25.76",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tanstack/eslint-config": "^0.3.0",
"concurrently": "^8.2.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"eslint": "^10.2.0",
"jsdom": "^27.0.0",
"prettier": "^3.5.3",
"tsx": "^4.21.0",
"typescript": "^5.7.2",
"vite": "^7.1.7",
"vitest": "^3.0.5",
"web-vitals": "^5.1.0"
}
}