-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.23 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
{
"name": "microbot-evolution-lab",
"private": true,
"version": "0.1.232",
"type": "module",
"scripts": {
"asbuild": "asc src/wasm/physics.ts -b public/physics.wasm -t public/physics.wat --optimize && asc src/wasm/spatial.ts -b public/spatial.wasm -t public/spatial.wat --optimize",
"dev": "vite",
"build": "npm run asbuild && tsc && vite build --emptyOutDir",
"build:single": "npm run asbuild && tsc && vite build --emptyOutDir --config vite.singlefile.config.ts",
"build:package": "npm run build:single && node build-hta.js",
"build:exe": "npm run build:single && node build-exe.js",
"build:electron": "tsc && vite build --emptyOutDir && electron-builder --win",
"preview": "vite preview"
},
"dependencies": {
"@capacitor/android": "^8.4.2",
"@capacitor/cli": "^8.4.2",
"@capacitor/core": "^8.4.2",
"lucide-react": "^0.344.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "^0.185.1"
},
"devDependencies": {
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/three": "^0.185.3",
"@vitejs/plugin-react": "^4.2.1",
"assemblyscript": "^0.28.20",
"typescript": "^5.2.2",
"vite": "^5.1.6",
"vite-plugin-singlefile": "^2.0.1"
}
}