-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.83 KB
/
package.json
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
{
"name": "cyber-leaf",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"tauri": "tauri",
"switch:tauri": "bun run ./scripts/switch-to-tauri.ts",
"switch:web": "bun run ./scripts/switch-to-web.ts",
"d:tauri": "bun run dev:tauri",
"d:web": "bun run dev:web",
"b:tauri": "bun run build:tauri",
"b:web": "bun run build:web",
"dev:tauri": "bun run switch:tauri && bun run tauri dev",
"build:tauri": "bun run switch:tauri && bun run tauri build",
"build:win": "bun run switch:tauri && bun run tauri build --runner cargo-xwin --target x86_64-pc-windows-msvc",
"dev:web": "bun run switch:web && vite --config vite.config.web.ts",
"build:web": "bun run switch:web && vite build --config vite.config.web.ts",
"preview:web": "vite preview --outDir ./dist-web"
},
"dependencies": {
"@ant-design/icons": "^5.5.2",
"@gradio/client": "^1.8.0",
"@tauri-apps/plugin-dialog": "~2.2.0",
"@tauri-apps/plugin-store": "~2.2.0",
"antd": "^5.22.5",
"emoji-regex": "^10.4.0",
"idb-keyval": "^6.2.1",
"oh-my-live2d": "^0.19.3",
"ollama": "^0.5.11",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zustand": "^5.0.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@tauri-apps/cli": "^2.1.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "~5.6.3",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.5"
}
}