-
Notifications
You must be signed in to change notification settings - Fork 715
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.87 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.87 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
{
"name": "hermes-workspace",
"version": "2.3.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",
"main": "electron/main.cjs",
"scripts": {
"dev": "NODE_OPTIONS=\"--max-old-space-size=2048\" vite dev",
"build": "NODE_OPTIONS=\"--max-old-space-size=${NODE_MAX_OLD_SPACE_SIZE:-2048}\" vite build",
"start:all": "concurrently \"hermes gateway run\" \"pnpm dev\"",
"start": "NODE_OPTIONS=\"--max-old-space-size=2048\" node server-entry.js",
"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",
"playground:ws": "node scripts/playground-ws.mjs",
"lint": "eslint",
"format": "prettier",
"check": "prettier --write . && eslint --fix",
"electron:dev": "NODE_ENV=development electron .",
"electron:build": "pnpm build && pnpm electron:bundle-server && electron-builder --config electron-builder.config.cjs",
"electron:build:mac": "pnpm build && pnpm electron:bundle-server && electron-builder --mac --config electron-builder.config.cjs",
"electron:build:win": "pnpm build && pnpm electron:bundle-server && electron-builder --win --config electron-builder.config.cjs",
"electron:bundle-server": "esbuild dist/server/server.js --bundle --platform=node --format=cjs --outfile=electron/server-bundle.cjs"
},
"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",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.6.1",
"@react-three/postprocessing": "^3.0.4",
"@react-three/rapier": "^2.2.0",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-query": "5.90.21",
"@tanstack/react-router": "1.166.7",
"@tanstack/react-router-devtools": "1.166.7",
"@tanstack/react-router-ssr-query": "1.166.7",
"@tanstack/react-start": "1.166.8",
"@tanstack/router-plugin": "1.166.7",
"@types/react-grid-layout": "^1.3.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"ecctrl": "^1.0.97",
"electron-updater": "^6.6.2",
"framer-motion": "^12.36.0",
"marked": "^17.0.1",
"motion": "^12.29.2",
"motion-dom": "^12.36.0",
"motion-utils": "^12.36.0",
"playwright": "^1.58.2",
"playwright-extra": "^4.3.6",
"postprocessing": "^6.39.1",
"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",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"shiki": "^3.21.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"three": "^0.184.0",
"vite-tsconfig-paths": "^6.0.2",
"ws": "^8.20.1",
"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.4",
"@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",
"concurrently": "^8.2.2",
"electron": "^40.8.2",
"electron-builder": "^26.8.1",
"esbuild": "^0.27.0",
"eslint": "^10.2.0",
"jsdom": "^27.0.0",
"prettier": "^3.5.3",
"tsx": "^4.21.0",
"typescript": "^5.7.2",
"vite": "^7.3.2",
"vitest": "^3.0.5",
"web-vitals": "^5.1.0"
}
}