-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
242 lines (242 loc) · 9.16 KB
/
Copy pathpackage.json
File metadata and controls
242 lines (242 loc) · 9.16 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
{
"name": "yoda",
"version": "0.20.0",
"description": "Yoda — master agentic coding through precise parallel orchestration of multiple coding agents",
"license": "Apache-2.0",
"type": "module",
"main": "./out/main/index.js",
"packageManager": "pnpm@10.28.2",
"scripts": {
"d": "pnpm install --prefer-frozen-lockfile --reporter=append-only --silent && pnpm run dev",
"dev": "node --experimental-strip-types scripts/dev.ts",
"dev:debug": "VITE_LOG_LEVEL=debug LOG_LEVEL=debug node --experimental-strip-types scripts/dev.ts",
"dev:main": "node --experimental-strip-types scripts/dev.ts --watch main",
"dev:renderer": "node --experimental-strip-types scripts/dev.ts --watch renderer",
"mobile": "pnpm --filter @yoda/mobile start",
"mobile:tunnel": "pnpm --filter @yoda/mobile start:tunnel",
"mobile:android": "pnpm --filter @yoda/mobile android",
"mobile:ios": "pnpm --filter @yoda/mobile ios",
"mobile:ios:device": "pnpm --filter @yoda/mobile ios:device",
"mobile:ios:simulator": "pnpm --filter @yoda/mobile ios:simulator",
"mobile:web": "pnpm --filter @yoda/mobile web",
"db:generate": "drizzle-kit generate",
"db:reset": "pnpm run db:reset:3 && pnpm run db:reset:4",
"db:reset:3": "rm -f \"$HOME/Library/Application Support/yoda/yoda3.db\" \"$HOME/Library/Application Support/yoda/yoda3.db-wal\" \"$HOME/Library/Application Support/yoda/yoda3.db-shm\" \"$HOME/.config/yoda/yoda3.db\" \"$HOME/.config/yoda/yoda3.db-wal\" \"$HOME/.config/yoda/yoda3.db-shm\"",
"db:reset:4": "rm -f \"$HOME/Library/Application Support/yoda/yoda4.db\" \"$HOME/Library/Application Support/yoda/yoda4.db-wal\" \"$HOME/Library/Application Support/yoda/yoda4.db-shm\" \"$HOME/.config/yoda/yoda4.db\" \"$HOME/.config/yoda/yoda4.db-wal\" \"$HOME/.config/yoda/yoda4.db-shm\"",
"test": "vitest run --project node && vitest run --project browser --browser.fileParallelism=false && pnpm --filter @yoda/relay test",
"build": "electron-vite build",
"build:main": "electron-vite build --filter main",
"build:renderer": "electron-vite build --filter renderer",
"install:mac-app": "node --experimental-strip-types scripts/install-mac-app.ts",
"prepare:sparkle": "node --experimental-strip-types scripts/release/prepare-sparkle.ts",
"test:sparkle-delta": "node --experimental-strip-types scripts/release/smoke-sparkle-delta.ts",
"package": "pnpm run build && pnpm run prepare:sparkle && electron-builder --config electron-builder.config.ts && pnpm run install:mac-app",
"package:mac": "pnpm run build && pnpm run prepare:sparkle && electron-builder --mac --config electron-builder.config.ts && pnpm run install:mac-app",
"package:linux": "pnpm run build && electron-builder --linux --publish never --config electron-builder.config.ts",
"package:win": "pnpm run build && electron-builder --win --publish never --config electron-builder.config.ts",
"postinstall": "node --experimental-strip-types scripts/postinstall.ts",
"rebuild": "electron-rebuild -f --only=better-sqlite3,node-pty",
"run:docker-ssh": "docker compose up --build -d",
"clean": "rm -rf node_modules dist",
"reset": "pnpm run clean && pnpm install",
"lint": "eslint . --cache --cache-strategy content --cache-location node_modules/.cache/eslint/.eslintcache",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit && tsc --noEmit -p scripts/release/tsconfig.json && pnpm --filter @yoda/relay typecheck && pnpm --filter @yoda/mobile typecheck",
"docs": "cd docs && pnpm run dev",
"docs:build": "cd docs && pnpm run build",
"prepare": "husky"
},
"keywords": [
"electron",
"coding-agents",
"git",
"claude",
"openai"
],
"author": {
"name": "LovStudio",
"email": "support@lovstudio.ai"
},
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.28.0"
},
"devDependencies": {
"@base-ui/react": "^1.7.0",
"@changesets/cli": "^2.31.0",
"@dicebear/core": "^10.5.0",
"@dicebear/styles": "^10.4.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/react": "^0.3.2",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@electron/rebuild": "^4.0.4",
"@eslint/js": "^9.0.0",
"@gitbeaker/rest": "^43.8.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@isaacs/brace-expansion": "^5.0.1",
"@linear/sdk": "^77.0.0",
"@llamaduck/forgejo-ts": "^14.0.3",
"@makeplane/plane-node-sdk": "^0.2.12",
"@monaco-editor/react": "^4.7.0",
"@mondaydotcomorg/api": "^14.0.0",
"@notionhq/client": "^5.24.0",
"@octokit/auth-oauth-device": "^8.0.3",
"@octokit/rest": "^22.0.1",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@tailwindcss/vite": "^4.2.1",
"@tanstack/react-form": "^1.28.4",
"@tanstack/react-hotkeys": "^0.4.1",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-virtual": "^3.13.23",
"@team-plain/graphql": "^1.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/react-window": "^1.8.8",
"@types/ssh2": "^1.15.5",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/browser": "^4.1.0",
"@vitest/browser-playwright": "^4.1.0",
"@vitest/browser-preview": "^4.1.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-unicode11": "0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "6.0.0",
"allotment": "^1.20.5",
"builder-util": "^26.8.1",
"chokidar": "^5.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"concurrently": "^8.2.2",
"croner": "^10.0.1",
"date-fns": "^4.1.0",
"devicon": "^2.17.0",
"dotenv": "^17.4.2",
"drizzle-kit": "^0.24.2",
"drizzle-orm": "^0.32.1",
"electron": "^42.0.0",
"electron-builder": "^26.8.1",
"electron-updater": "^6.3.9",
"electron-vite": "^5.0.0",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^7.0.0",
"fix-path": "^4.0.0",
"framer-motion": "^12.33.0",
"glob": "^13.0.6",
"human-id": "^4.1.2",
"husky": "^9.1.7",
"i18next": "^26.0.10",
"i18next-browser-languagedetector": "^8.2.1",
"ignore": "^5.3.1",
"jsdom": "^29.0.2",
"jsonc-parser": "^3.3.1",
"lint-staged": "^16.3.0",
"lovinsp": "^1.8.0",
"lucide-react": "^0.564.0",
"minimatch": "^10.1.1",
"mobx": "^6.15.0",
"mobx-react-lite": "^4.1.1",
"modern-screenshot": "^4.7.0",
"monaco-editor": "^0.55.1",
"motion": "^12.23.12",
"nbranch": "^0.1.1",
"pinyin-pro": "^3.28.1",
"postcss": "^8.4.32",
"prettier": "3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"qiniu": "^7.15.2",
"qrcode.react": "^4.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^17.0.7",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.7.3",
"react-syntax-highlighter": "^15.6.6",
"react-window": "^2.2.4",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"s3mini": "^0.9.4",
"smol-toml": "^1.6.0",
"sonner": "^2.0.7",
"streamdown": "^1.3.0",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^4.2.1",
"trello.js": "^2.1.6",
"tsconfig-paths": "^3.15.0",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.0.0",
"uiohook-napi": "^1.5.5",
"use-double-click": "^1.0.5",
"vite": "^6.4.1",
"vitest": "^4.1.0",
"vitest-browser-react": "^2.1.0",
"yaml": "^2.9.0"
},
"dependencies": {
"@electron-internal/extract-zip": "1.0.4",
"@parcel/watcher": "^2.5.6",
"@xterm/addon-serialize": "0.14.0",
"@xterm/headless": "6.0.0",
"ai": "^7.0.8",
"better-sqlite3": "^12.11.1",
"node-pty": "1.1.0",
"ssh2": "^1.17.0",
"ws": "^8.19.0",
"yet-another-react-lightbox": "^3.32.2",
"zod": "^4.3.6"
},
"pnpm": {
"overrides": {
"node-abi": "^4.31.0"
},
"onlyBuiltDependencies": [
"better-sqlite3",
"node-pty",
"electron"
],
"ignoredBuiltDependencies": [
"core-js",
"cpu-features",
"esbuild",
"protobufjs",
"ssh2"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{js,jsx,json,css}": [
"prettier --write"
]
}
}