Files
VRCT/package.json
misyaguziya 7ffef350fe [Update] package.json: Add task-kill script to terminate VRCT-sidecar.exe before development builds
[Add] task_kill.py: Implement script to forcefully terminate VRCT-sidecar.exe
2025-09-08 16:30:58 +09:00

63 lines
2.1 KiB
JSON

{
"name": "vrct",
"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",
"task-kill": "python task_kill.py",
"clean": "python clean.py",
"dev": "npm run task-kill && npm run build-python && npm run dev-ui",
"dev-cuda": "npm run task-kill && npm run build-python-cuda && npm run dev-ui",
"dev-ui": "npm-run-all --parallel vite tauri-dev",
"build": "npm run clean && npm run build-python && npm run vite-build && npm run tauri build",
"build-cuda": "npm run clean && npm run build-python-cuda && npm run vite-build && npm run tauri build",
"release": "npm run build && python zip.py --zip_name VRCT.zip",
"release-cuda": "npm run build-cuda && python zip.py --zip_name VRCT_cuda.zip",
"release-all": "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"
}
}