-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.74 KB
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
{
"name": "omnibioai-studio",
"version": "0.3.0-beta",
"productName": "OmniBioAI Studio",
"description": "AI-powered bioinformatics orchestration desktop platform",
"main": "electron/main.js",
"scripts": {
"predev": "fuser -k 5174/tcp 2>/dev/null; true",
"dev": "cross-env OMNIBIOAI_DEV_MODE=true concurrently \"npm run vite\" \"npx --no-install electron . --no-sandbox --disable-gpu-sandbox\"",
"vite": "vite",
"build:ui": "vite build",
"build:dev": "cross-env OMNIBIOAI_DEV_MODE=true npm run build:ui && electron-builder --linux --arch arm64",
"build:linux": "cross-env OMNIBIOAI_DEV_MODE=false npm run build:ui && electron-builder --linux --arch arm64",
"build:mac": "cross-env OMNIBIOAI_DEV_MODE=false npm run build:ui && electron-builder --mac",
"build:win": "cross-env OMNIBIOAI_DEV_MODE=false npm run build:ui && electron-builder --win",
"build:all": "cross-env OMNIBIOAI_DEV_MODE=false npm run build:ui && electron-builder --linux --mac --win",
"build": "npm run build:linux",
"dist": "npm run build",
"web": "vite",
"web:build": "vite build",
"web:preview": "vite preview"
},
"dependencies": {
"@man4ish/design-tokens": "file:../omnibioai-design-tokens",
"@man4ish/ui": "file:../omnibioai-ui",
"@sentry/react": "^8.55.2",
"electron-updater": "^6.8.9",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"zustand": "^4.0.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^6.0.2",
"autoprefixer": "^10.5.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^41.7.1",
"electron-builder": "^26.15.3",
"postcss": "^8.5.10",
"tailwindcss": "^3.4.19",
"vite": "^8.0.16"
},
"author": "Manish Kumar <mandecent.gupta@gmail.com>"
}