-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 998 Bytes
/
package.json
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
{
"name": "electron-can-viewer",
"version": "1.0.1",
"description": "Basic Electron app to view CAN messages using an Arduino as a CAN adapter",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"postinstall": "electron-rebuild -f -w serialport",
"publish": "electron-builder -p always"
},
"repository": "https://github.com/ste2425/Electron-CAN-viewer/",
"keywords": [
"Electron",
"Arduino",
"CAN"
],
"author": {
"name": "Stephen Cooper",
"email": "[email protected]"
},
"license": "",
"devDependencies": {
"electron": "^15.1.1",
"electron-builder": "^22.13.1",
"electron-rebuild": "^3.2.3"
},
"dependencies": {
"bootstrap": "^5.1.3",
"bootstrap-icons": "^1.5.0",
"electron-log": "^4.4.1",
"electron-updater": "^4.3.9",
"exceljs": "^4.3.0",
"serialport": "^9.2.4"
},
"build": {
"buildDependenciesFromSource": true,
"npmRebuild": false
}
}