forked from morapelker/hive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 4.57 KB
/
package.json
File metadata and controls
145 lines (145 loc) · 4.57 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
{
"name": "hive",
"version": "1.0.61",
"description": "Native macOS app for managing git worktrees and AI-powered coding sessions",
"main": "./out/main/index.js",
"author": "morapelker",
"license": "MIT",
"homepage": "https://github.com/morapelker/hive#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/morapelker/hive.git"
},
"bugs": {
"url": "https://github.com/morapelker/hive/issues"
},
"keywords": [
"git",
"worktrees",
"electron",
"macos",
"developer-tools",
"ai",
"opencode",
"claude",
"coding-assistant",
"git-management",
"productivity"
],
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"electron",
"esbuild",
"msw",
"node-pty"
]
},
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"start": "electron-vite preview",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "pnpm run build && electron-builder --dir",
"build:win": "pnpm run build && electron-builder --win",
"build:mac": "test -f .env.signing && . ./.env.signing; pnpm run build && electron-builder --mac",
"build:mac:unsigned": "CSC_IDENTITY_AUTO_DISCOVERY=false pnpm run build && electron-builder --mac",
"build:linux": "pnpm run build && electron-builder --linux",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"build:native": "cd src/native && npx node-gyp rebuild",
"release": "bash scripts/release.sh",
"release:canary": "bash scripts/release-canary.sh",
"codegen": "graphql-codegen --config src/shared/codegen.ts"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.76",
"@electron-toolkit/utils": "^3.0.0",
"@monaco-editor/react": "^4.7.0",
"@opencode-ai/sdk": "^1.1.51",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-slot": "^1.1.1",
"@tanstack/react-virtual": "^3.13.18",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"ansi-to-react": "^6.2.6",
"better-sqlite3": "^12.6.2",
"chokidar": "^3.6.0",
"cmdk": "0.2.1",
"diff2html": "^3.4.56",
"electron-updater": "^6.7.3",
"graphql": "^16.12.0",
"graphql-ws": "^6.0.7",
"graphql-yoga": "^5.18.0",
"highlight.js": "^11.11.1",
"lucide-react": "^0.468.0",
"monaco-editor": "^0.55.1",
"node-addon-api": "^8.5.0",
"node-pty": "^1.1.0",
"posthog-node": "^5.26.0",
"qrcode-terminal": "^0.12.0",
"radix-ui": "^1.4.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"remark-gfm": "^4.0.1",
"simple-git": "^3.30.0",
"sonner": "^1.7.1",
"vscode-jsonrpc": "^8.2.1",
"vscode-languageserver-types": "^3.17.5",
"ws": "^8.19.0",
"zod": "3.25.76",
"zustand": "^5.0.2"
},
"devDependencies": {
"@electron-toolkit/eslint-config-ts": "^3.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@eslint/js": "^9.17.0",
"@graphql-codegen/cli": "^6.1.1",
"@graphql-codegen/typescript": "^5.0.8",
"@graphql-codegen/typescript-resolvers": "^5.1.6",
"@playwright/test": "^1.49.1",
"@tailwindcss/vite": "^4.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.3.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"shadcn": "^3.8.2",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^4.0.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5",
"vitest": "^2.1.8"
}
}