-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.01 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
{
"name": "opencode-orchestrator",
"version": "0.18.5",
"private": true,
"scripts": {
"dev": "next dev",
"dev:ui": "next dev --port 3001",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"build:cli": "esbuild src/cli/index.ts --bundle --platform=node --target=node20 --outfile=cli.js --format=cjs",
"build:standalone": "next build && npm run build:cli && bash scripts/assemble-standalone.sh",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "node scripts/tauri-prebuild.mjs && npx tauri build",
"tauri:build:stable": "WEAVE_UPDATE_CHANNEL=stable node scripts/tauri-prebuild.mjs && npx tauri build",
"tauri:build:dev": "WEAVE_UPDATE_CHANNEL=dev node scripts/tauri-prebuild.mjs && npx tauri build"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@opencode-ai/sdk": "^1.3.9",
"@tanstack/react-virtual": "^3.13.23",
"@tauri-apps/api": "^2.10.1",
"better-sqlite3": "^12.8.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"highlight.js": "^11.11.1",
"lucide-react": "^1.7.0",
"monaco-editor": "^0.55.1",
"next": "16.2.1",
"radix-ui": "^1.4.3",
"react": "19.2.4",
"react-diff-viewer-continued": "^4.2.0",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@tauri-apps/cli": "^2",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"esbuild": "^0.27.4",
"eslint": "^9",
"eslint-config-next": "16.2.1",
"jsdom": "^29.0.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}