Files
VRCT/package.json

64 lines
2.4 KiB
JSON

{
"name": "vrct",
"private": true,
"version": "3.4.0",
"type": "module",
"scripts": {
"setup-python": "bat\\install.bat",
"build-python": "bat\\build.bat",
"build-python-cuda": "bat\\build_cuda.bat",
"vite": "vite",
"vite-build": "vite build",
"vite-preview": "vite preview",
"tauri": "tauri",
"tauri-dev": "tauri dev",
"task-kill": "python utils\\task_kill.py",
"clean": "python utils\\clean.py",
"update-version": "python utils\\update_version.py",
"dev": "npm run task-kill && npm run clean && npm run update-version && npm run build-python && npm run dev-ui",
"dev-cuda": "npm run task-kill && npm run clean && npm run update-version && npm run build-python-cuda && npm run dev-ui",
"dev-ui": "npm run task-kill && npm-run-all --parallel vite tauri-dev",
"build": "npm run task-kill && npm run clean && npm run update-version && npm run build-python && npm run vite-build && npm run tauri build",
"build-cuda": "npm run task-kill && npm run clean && npm run update-version && npm run build-python-cuda && npm run vite-build && npm run tauri build",
"release": "npm run update-version && npm run build && python utils\\zip.py --zip_name VRCT.zip",
"release-cuda": "npm run update-version && npm run build-cuda && python utils\\zip.py --zip_name VRCT_cuda.zip",
"release-all": "npm run update-version && npm run release && npm run release-cuda"
},
"dependencies": {
"@babel/standalone": "7.27.0",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@mui/material": "7.0.2",
"@tauri-apps/api": "2.5.0",
"@tauri-apps/plugin-fs": "2.2.1",
"@tauri-apps/plugin-global-shortcut": "2.2.0",
"@tauri-apps/plugin-http": "2.4.3",
"@tauri-apps/plugin-opener": "2.2.6",
"@tauri-apps/plugin-shell": "2.2.1",
"clsx": "2.1.1",
"i18next": "25.0.1",
"jotai": "2.12.3",
"js-base64": "3.7.7",
"jszip": "3.10.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-error-boundary": "5.0.0",
"react-i18next": "15.5.1",
"react-resizable-layout": "0.7.2",
"react-toastify": "11.0.5",
"sass": "1.79.4",
"semver": "7.7.1"
},
"devDependencies": {
"@rollup/plugin-yaml": "4.1.2",
"@tauri-apps/cli": "2.5.0",
"@vitejs/plugin-react": "4.4.1",
"eslint": "9.25.1",
"eslint-plugin-react": "7.37.5",
"npm-run-all": "4.1.5",
"source-map": "0.7.4",
"vite": "6.3.4",
"vite-plugin-svgr": "4.3.0"
}
}