cvpilot-tool/apps/desktop/package.json

104 lines
3.3 KiB
JSON
Raw Normal View History

2024-08-29 16:59:25 +08:00
{
"name": "@cvpilot/desktop",
"private": true,
2024-09-03 15:28:30 +08:00
"version": "1.0.0",
2024-08-29 16:59:25 +08:00
"type": "module",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@ant-design/icons": "^5.4.0",
2024-09-16 00:54:12 +08:00
"@cornerstonejs/calculate-suv": "1.1.0",
"@cornerstonejs/core": "1.84.4",
"@cornerstonejs/dicom-image-loader": "1.84.4",
"@cornerstonejs/streaming-image-volume-loader": "1.84.4",
"@cornerstonejs/tools": "1.84.4",
2024-08-29 16:59:25 +08:00
"@google-cloud/spanner": "^7.12.0",
2024-08-30 16:58:44 +08:00
"@hookform/resolvers": "3.9.0",
2024-08-29 16:59:25 +08:00
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-menubar": "^1.1.1",
2024-09-02 10:06:06 +08:00
"@radix-ui/react-progress": "^1.1.0",
2024-08-30 16:58:44 +08:00
"@radix-ui/react-radio-group": "^1.2.0",
2024-08-29 16:59:25 +08:00
"@radix-ui/react-scroll-area": "^1.1.0",
2024-08-30 16:58:44 +08:00
"@radix-ui/react-select": "^2.1.1",
2024-09-16 00:54:12 +08:00
"@radix-ui/react-slider": "^1.2.0",
2024-08-29 16:59:25 +08:00
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.2",
"@tanstack/react-table": "^8.20.5",
"@types/react-icons": "^3.0.0",
"@xenova/transformers": "^2.17.2",
"antd": "^5.20.0",
2024-09-16 00:54:12 +08:00
"axios": "1.7.7",
2024-08-29 16:59:25 +08:00
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"custom-electron-titlebar": "^4.2.8",
"date-fns": "^3.6.0",
2024-09-04 17:00:10 +08:00
"dayjs": "1.11.13",
2024-09-16 00:54:12 +08:00
"dcmjs": "0.34.1",
2024-08-29 16:59:25 +08:00
"dexie": "^4.0.8",
"dicom-parser": "1.8.21",
2024-09-16 00:54:12 +08:00
"dicomweb-client": "0.10.4",
2024-08-29 16:59:25 +08:00
"dockview": "^1.15.2",
2024-09-16 00:54:12 +08:00
"electron-log": "5.2.0",
2024-08-29 16:59:25 +08:00
"electron-store": "^10.0.0",
2024-09-04 17:00:10 +08:00
"embla-carousel-react": "^8.2.0",
2024-08-29 16:59:25 +08:00
"flexlayout-react": "^0.7.15",
2024-09-16 00:54:12 +08:00
"form-data": "4.0.0",
2024-08-29 16:59:25 +08:00
"framer-motion": "^11.3.24",
2024-09-16 00:54:12 +08:00
"lodash": "4.17.21",
2024-08-29 16:59:25 +08:00
"lowdb": "^7.0.1",
"lucide-react": "^0.408.0",
2024-09-04 17:00:10 +08:00
"node-machine-id": "1.1.12",
2024-08-29 16:59:25 +08:00
"object-hash": "^3.0.0",
"onnxruntime-node": "^1.18.0",
"openvino-node": "2024.3.0",
"react": "^18.2.0",
"react-day-picker": "^8.10.1",
"react-desktop": "^0.3.9",
"react-dom": "^18.2.0",
2024-08-30 16:58:44 +08:00
"react-dropzone": "14.2.3",
2024-09-16 00:54:12 +08:00
"react-grid-layout": "1.4.4",
2024-08-30 16:58:44 +08:00
"react-hook-form": "7.53.0",
2024-08-29 16:59:25 +08:00
"react-icons": "^5.2.1",
2024-09-16 00:54:12 +08:00
"react-resizable": "3.0.5",
2024-09-05 13:01:55 +08:00
"react-resizable-panels": "^2.1.1",
2024-08-29 16:59:25 +08:00
"react-router-dom": "^6.26.0",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
2024-09-16 00:54:12 +08:00
"zod": "3.23.8"
2024-08-29 16:59:25 +08:00
},
"devDependencies": {
"@radix-ui/react-icons": "^1.3.0",
2024-09-16 00:54:12 +08:00
"@types/lodash": "4.17.7",
2024-09-04 17:00:10 +08:00
"@types/node": "22.5.2",
2024-08-29 16:59:25 +08:00
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"electron": "30.4.0",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"postcss": "^8.4.39",
"tailwindcss": "^3.4.4",
"typescript": "^5.2.2",
"vite": "^5.1.6",
"vite-plugin-electron": "^0.28.6",
2024-09-06 14:27:41 +08:00
"vite-plugin-electron-renderer": "^0.14.5",
2024-09-12 12:55:37 +08:00
"vite-plugin-node-polyfills": "0.22.0"
2024-08-29 16:59:25 +08:00
}
2024-09-18 15:23:43 +08:00
}