-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.55 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.55 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
{
"name": "opencodeui",
"version": "0.6.6",
"description": "A third-party web frontend for OpenCode",
"license": "GPL-3.0-only",
"type": "module",
"scripts": {
"dev": "vite",
"typecheck": "tsc -b",
"type-check": "npm run typecheck",
"build": "tsc -b && vite build",
"icons:tauri": "tauri icon src-tauri/app-icon.manifest.json -o src-tauri/icons",
"lint": "eslint .",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test": "vitest",
"test:run": "vitest run",
"validate": "npm run typecheck && npm run lint && npm run test:run && npm run build",
"release:prepare": "node scripts/prepare-release.mjs",
"check": "npm run format:check && npm run lint && npm run test:run && npm run build",
"preview": "vite preview",
"tauri": "tauri",
"postinstall": "node scripts/copy-material-icons.mjs"
},
"dependencies": {
"@codemirror/commands": "^6.10.3",
"@codemirror/search": "^6.7.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.1",
"@opencode-ai/sdk": "^1.4.1",
"@streamdown/math": "^1.0.2",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-http": "^2.5.7",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.3",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"clsx": "^2.1.1",
"diff": "^8.0.4",
"i18next": "^26.0.1",
"i18next-browser-languagedetector": "^8.2.1",
"lucide-react": "^1.7.0",
"motion": "^12.38.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^17.0.1",
"shiki": "^4.0.2",
"streamdown": "^2.5.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/cli": "^2.10.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/diff": "^7.0.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"jsdom": "^29.0.1",
"material-icon-theme": "^5.32.0",
"prettier": "^3.6.2",
"tailwindcss": "^4.2.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.57.2",
"vite": "^8.0.3",
"vitest": "^4.1.2"
}
}