-
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.08 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "app",
"private": true,
"version": "1.5.0",
"type": "module",
"main": "electron/main.cjs",
"description": "AI-powered 3D mesh production studio — image generation, mesh generation, UV unwrapping, and texturing pipelines.",
"author": {
"name": "Bruno Fargnoli",
"email": "info@3dgenstudio.com"
},
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "node server.js",
"dev:client": "vite",
"build": "vite build",
"start": "node server.js",
"serve": "vite build && node server.js",
"lint": "eslint .",
"preview": "vite preview",
"electron:dev": "npm run build && electron .",
"dist": "npm run build && electron-builder",
"dist:win": "npm run build && electron-builder --win",
"dist:mac": "npm run build && electron-builder --mac",
"dist:linux": "npm run build && electron-builder --linux",
"dist:dir": "npm run build && electron-builder --dir"
},
"dependencies": {
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@types/three": "^0.183.1",
"@xyflow/react": "^12.10.2",
"ag-psd": "^30.1.1",
"concurrently": "^9.2.1",
"cors": "^2.8.6",
"dexie": "^4.4.2",
"dexie-react-hooks": "^4.4.0",
"express": "^5.2.1",
"lowdb": "^7.0.1",
"multer": "^2.1.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^9.1.0",
"react-router-dom": "^7.14.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"sqlite3": "^6.0.1",
"systeminformation": "^5.31.5",
"tencentcloud-sdk-nodejs-intl-en": "^3.0.1352",
"three": "^0.183.2",
"three-bvh-csg": "^0.0.18",
"three-mesh-bvh": "^0.9.9",
"ws": "^8.21.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"electron": "^33.2.0",
"electron-builder": "^25.1.8",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"vite": "^8.0.4"
}
}