-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.9 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.9 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": "harnss",
"version": "0.14.3",
"productName": "Harnss",
"description": "Harness your AI coding agents — one desktop app for Claude Code, Codex, and any ACP agent",
"author": {
"name": "Dejan Zegarac",
"email": "dejanzegarac3@gmail.com"
},
"license": "MIT",
"homepage": "https://github.com/OpenSource03/harnss",
"repository": {
"type": "git",
"url": "https://github.com/OpenSource03/harnss.git"
},
"main": "electron/dist/main.js",
"scripts": {
"build:electron": "tsup --config tsup.electron.config.ts",
"dev": "concurrently \"vite\" \"pnpm build:electron --watch\" \"node scripts/delay.js 3 && cross-env ELECTRON_ENABLE_LOGGING=1 electron .\"",
"build": "pnpm build:electron && vite build",
"start": "electron .",
"dist": "pnpm build && electron-builder --config electron-builder.config.js",
"dist:fast": "pnpm build && electron-builder --config electron-builder.config.js --dir",
"dist:mac": "pnpm build && electron-builder --mac --config electron-builder.config.js",
"dist:win": "pnpm build && electron-builder --win --config electron-builder.config.js",
"dist:linux": "pnpm build && electron-builder --linux --config electron-builder.config.js",
"postinstall": "electron-rebuild",
"test": "vitest run --config vitest.config.electron.ts",
"test:watch": "vitest --config vitest.config.electron.ts"
},
"packageManager": "pnpm@10.26.0",
"dependencies": {
"@agentclientprotocol/sdk": "^0.14.1",
"@anthropic-ai/claude-agent-sdk": "^0.2.63",
"@huggingface/transformers": "^3.8.1",
"@modelcontextprotocol/sdk": "^1.26.0",
"electron-context-menu": "^4.1.1",
"electron-liquid-glass": "^1.1.1",
"electron-updater": "^6.8.3",
"konva": "^10.2.0",
"motion": "^12.34.3",
"node-pty": "^1.1.0",
"react-konva": "^19.2.3",
"refractor": "^5.0.0",
"sonner": "^2.0.7"
},
"devDependencies": {
"@electron/rebuild": "^4.0.3",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.18",
"@types/hast": "^3.0.4",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^5.1.4",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"diff": "^8.0.3",
"electron": "^40.4.0",
"electron-builder": "^26.8.1",
"lucide-react": "^0.563.0",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"remark-gfm": "^4.0.1",
"shadcn": "^3.8.4",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tsup": "^8.5.1",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}