-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.26 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.26 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "istsos4-wizard",
"private": true,
"version": "1.0.0",
"description": "Desktop configuration wizard for istSOS4",
"main": "electron/main.js",
"homepage": "./",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"electron": "electron .",
"electron-dev": "concurrently \"npm run dev\" \"wait-on http://localhost:5173 && electron .\"",
"dist": "npm run build && electron-builder --publish=never",
"dist:win": "npm run build && electron-builder --win --publish=never",
"dist:mac": "npm run build && electron-builder --mac --publish=never",
"dist:linux": "npm run build && electron-builder --linux --publish=never"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.8",
"lucide-react": "^0.512.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwindcss": "^4.1.8"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@tailwindcss/postcss": "^4.1.11",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react-swc": "^3.9.0",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.0",
"electron": "^37.2.3",
"electron-builder": "^26.0.12",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"postcss": "^8.5.6",
"vite": "^6.3.5",
"wait-on": "^8.0.3"
},
"build": {
"appId": "com.istsos.configurator",
"productName": "istSOS4 Configurator",
"directories": {
"output": "dist-electron"
},
"files": [
"dist/**/*",
"electron/**/*",
"public/logo.jpg"
],
"win": {
"target": "nsis",
"icon": "public/logo.jpg",
"signAndEditExecutable": false
},
"mac": {
"target": "dmg",
"icon": "public/logo.jpg",
"category": "public.app-category.developer-tools"
},
"linux": {
"target": "AppImage",
"icon": "public/logo.jpg",
"category": "Development"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": false
},
"publish": null
},
"author": {
"name": "istSOS4 Team",
"email": "info@istsos.org"
}
}