-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 KB
/
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
41
42
43
44
45
46
47
48
49
50
{
"name": "rocket-stove-electron-serialport",
"version": "0.9.0",
"description": "Interface for the rocket stove temp controller",
"main": "main.js",
"scripts": {
"start": "electron .",
"rebuild": "electron-rebuild",
"pack": "build --dir",
"pack-mac": "build --mac",
"pack-win": "build --win"
},
"build": {
"appId": "com.jvsdesign.rocketstovetempcontrol",
"productName": "Rocket Stove Temperature Control",
"npmRebuild": true,
"directories": {
"output": "./packages"
},
"win": {
"target": "nsis",
"icon": "resources/icon.ico"
},
"mac": {
"category": "public.app-category.utilities",
"icon": "resources/icon.icns",
"target": "dmg"
}
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"Electron",
"serialport"
],
"author": "john van strien",
"license": "",
"devDependencies": {
"electron": "1.8.2",
"electron-builder": "20.3.1",
"electron-rebuild": "^1.7.3"
},
"dependencies": {
"jquery": "^3.3.1",
"jquery-ui": "^1.12.1",
"serialport": "6.1.1"
}
}