-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.66 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
{
"name": "smartstack",
"version": "1.0.0",
"description": "SmartStack — Entorno de desarrollo local por SmartVida",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dev": "concurrently \"vite --config vite.config.js\" \"wait-on http://localhost:5173 && electron .\"",
"build": "vite build --config vite.config.js && electron-builder",
"build:win": "vite build --config vite.config.js && electron-builder --win",
"build:mac": "vite build --config vite.config.js && electron-builder --mac",
"build:linux": "vite build --config vite.config.js && electron-builder --linux",
"test": "node --test tests/services.test.js"
},
"build": {
"appId": "mx.smartvida.smartstack",
"productName": "SmartStack",
"copyright": "Copyright © 2025 SmartVida",
"asar": false,
"directories": {
"output": "release"
},
"files": [
"src/**/*",
"dist/renderer/**/*",
"binaries/**/*",
"config/**/*",
"htdocs/**/*",
"assets/**/*"
],
"win": {
"target": "nsis",
"icon": "assets/icon.png"
},
"mac": {
"target": "dmg",
"icon": "assets/icon.png"
},
"linux": {
"target": "AppImage",
"icon": "assets/icon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"dependencies": {
"electron-store": "^8.1.0",
"unzipper": "^0.12.5"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.0.0",
"concurrently": "^8.0.0",
"electron": "^28.0.0",
"electron-builder": "^24.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"vite": "^5.0.0",
"wait-on": "^7.0.0"
}
}