-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.3 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.3 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
{
"name": "sentinel-bms-monitor",
"version": "1.0.0",
"description": "Electron-based monitoring software for Sentinel BMS devices.",
"author": "Isaac Rampton",
"main": "index.js",
"scripts": {
"build": "vite build",
"build:win-portable": "npm run build && electron-builder --win portable",
"start": "npm run build && electron .",
"start:electron": "electron .",
"dev:build": "vite build --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"private": true,
"build": {
"appId": "com.sentinel.bmsmonitor",
"productName": "Sentinel BMS Monitor",
"files": [
"index.js",
"preload.js",
"serial.js",
"serial-protocol.js",
"modules.json",
"web/dist/**/*"
],
"extraMetadata": {
"main": "index.js"
},
"win": {
"signAndEditExecutable": false,
"target": [
{
"target": "portable",
"arch": [
"x64"
]
}
],
"artifactName": "${productName}-${version}-portable-${arch}.${ext}"
}
},
"dependencies": {
"chart.js": "^4.5.1",
"serialport": "^13.0.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.1",
"electron": "^38.3.0",
"electron-builder": "^26.0.12",
"vite": "^7.1.3"
}
}