-
Notifications
You must be signed in to change notification settings - Fork 235
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
51
52
53
54
55
{
"name": "mBlock",
"version": "4.0.0",
"description": "mblock 4.0",
"main": "./app/main.js",
"homepage": "http://mblock.cc",
"email": "[email protected]",
"scripts": {
"rebuild-serialport": "electron-rebuild -f -w serialport",
"rebuild-hid": "electron-rebuild -f -w node-hid",
"rebuild-bluetooth": "electron-rebuild -f -w bluetooth-serial-port",
"start": "electron .",
"debug": "electron --debug=5858 .",
"pack": "build --dir",
"dist-linux": "build --linux AppImage",
"dist-windows": "build --windows dir",
"dist-windows-store": "build --windows appx",
"postinstall": "install-app-deps"
},
"repository": "https://git.oschina.net/makeblock/mblock-for-myh",
"keywords": [
"mBlock"
],
"author": {
"name": "Makeblock Co., Ltd.",
"email": "[email protected]"
},
"license": "GPL",
"devDependencies": {
"electron-builder": "^10.12.0",
"electron-prebuilt": "^1.4.13",
"electron-rebuild": "^1.4.0"
},
"dependencies": {
"node-hid": "^0.5.2",
"os-locale": "^2.0.0",
"sudo-prompt": "^6.2.1",
"serialport": "^4.0.7",
"express": "^4.14.0",
"bluetooth-serial-port": "^2.1.1",
"debug": "^2.4.5",
"i18n": "^0.8.3"
},
"build": {
"appId": "cc.mblock",
"files": ["app", "i18n", "node_modules"],
"extraResources": ["plugins", "tools", "web"],
"appx": {
"publisher": "CN=92193A5C-5088-4483-8766-AB5E50CFDC9F"
},
"mac": {
"category": ""
}
}
}