-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
50 lines (50 loc) · 1.64 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
{
"name": "tauri-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"setup-python": "install.bat",
"build-python": "build.bat",
"build-python-cuda": "build_cuda.bat",
"vite": "vite",
"vite-build": "vite build",
"vite-preview": "vite preview",
"tauri": "tauri",
"tauri-dev": "tauri dev",
"dev": "npm run build-python && npm run dev-ui",
"dev-cuda": "npm run build-python-cuda && npm run dev-ui",
"dev-ui": "npm-run-all --parallel vite tauri-dev",
"build": "npm run build-python && npm run vite-build && npm run tauri build",
"build-cuda": "npm run build-python-cuda && npm run vite-build && npm run tauri build",
"build-ui": "npm run vite-build && npm run tauri build",
"release": "python zip.py --zip_name VRCT.zip",
"release-cuda": "python zip.py --zip_name VRCT_cuda.zip",
"release-all": "npm run build && npm run release && npm run build-cuda && npm run release-cuda"
},
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@mui/material": "6.2.0",
"@tauri-apps/api": "1.6.0",
"@vitejs/plugin-react": "4.3.4",
"clsx": "2.1.1",
"eslint": "8.57.0",
"eslint-plugin-react": "7.37.2",
"i18next": "24.1.0",
"jotai": "2.10.3",
"js-base64": "3.7.7",
"js-yaml": "4.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "15.2.0",
"react-resizable-layout": "0.7.2"
},
"devDependencies": {
"@tauri-apps/cli": "1.6.3",
"npm-run-all": "4.1.5",
"sass": "1.79.4",
"vite": "6.0.3",
"vite-plugin-svgr": "4.3.0"
}
}