-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.2 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.2 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
{
"name": "zeroma",
"version": "0.6.0",
"private": true,
"license": "MIT OR Apache-2.0",
"author": "Hung-Han Chen <chenhungh@gmail.com>",
"type": "module",
"scripts": {
"dev": "vite",
"tauri-dev": "tauri dev",
"build": "tsc && vite build",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"test": "vitest run",
"test:watch": "vitest",
"tauri": "tauri",
"dev:website": "VITE_BUILD_TARGET=website vite",
"build:website": "VITE_BUILD_TARGET=website tsc && VITE_BUILD_TARGET=website vite build"
},
"dependencies": {
"@base-ui/react": "^1.0.0",
"@fontsource-variable/jetbrains-mono": "^5",
"@monaco-editor/react": "^4.8.0-rc.3",
"@tanstack/react-query": "^5",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-store": "^2.4.2",
"@tauri-apps/plugin-updater": "^2.10.0",
"@xterm/addon-webgl": "^0.20.0-beta.166",
"@xterm/xterm": "^6.1.0-beta.167",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lodash": "^4.18.1",
"lucide-react": "^0.562",
"react": "^19.2",
"react-dom": "^19.2",
"react-resizable-panels": "^3.0.6",
"shadcn": "^3.6.2",
"shiki": "^3.22.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"yaml": "^2.8"
},
"devDependencies": {
"@google/genai": "^1.48.0",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"@tauri-apps/cli": "^2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/lodash": "^4.17.21",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/ui": "^4.0.16",
"autoprefixer": "^10.4.23",
"globals": "^16.5.0",
"jsdom": "^27.4.0",
"oxlint": "^1.42.0",
"oxlint-tsgolint": "^0.11.4",
"postcss": "^8.5.6",
"sharp": "^0.34.5",
"typescript": "~5.8.3",
"typescript-eslint": "^8.50.1",
"vite": "^7.3.2",
"vitest": "^4.0.16"
}
}