forked from entrylabs/entry-hw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.64 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
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
84
85
86
{
"name": "entry_hw",
"version": "1.6.34",
"description": "엔트리 하드웨어 연결 프로그램",
"author": "EntryLabs",
"main": "app/index.js",
"scripts": {
"lint": "eslint app",
"clean": "rimraf dist",
"start": "set NODE_ENV=development&&electron -d app",
"pack:win32": "build --arch ia32",
"make": "cross-env CSC_NAME=\"Connect Foundation (DLFUSDA3L5)\"&&build",
"make:osx": "cross-env CSC_NAME=\"Connect Foundation (DLFUSDA3L5)\"&&build",
"make:win32": "build --arch ia32 --platform=win32 && makensis ./build/entry-hw.nsi"
},
"build": {
"mac": {
"target": "dmg",
"category": "public.app-category.education",
"extendInfo": {
"URL Types": [
{
"URL Identifie": "org.playentry.entryhw",
"URL Schemes": [
"entryhw"
]
}
],
"CFBundleURLTypes": [
{
"CFBundleURLName": "org.playentry.entryhw",
"CFBundleURLSchemes": [
"entryhw"
]
}
]
}
},
"dmg": {
"icon": "build/icon.icns",
"iconSize": 80,
"background": "build/background.png",
"contents": [
{
"x": 240,
"y": 120
},
{
"x": 240,
"y": 380,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": "dir"
},
"asar": true,
"appId": "org.playentry.entryhw",
"productName": "Entry_HW"
},
"devDependencies": {
"cross-env": "^5.1.3",
"electron": "4.0.0",
"electron-builder": "^20.38.5",
"electron-packager": "^13.0.1",
"electron-rebuild": "^1.8.4",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.16.4",
"rimraf": "^2.6.3"
},
"dependencies": {
"@entrylabs/bindings": "^1.0.0",
"@serialport/binding-abstract": "^2.0.4",
"@serialport/parser-readline": "^2.0.2",
"@serialport/stream": "^2.0.4",
"debug": "^2.2.0",
"eslint": "^4.18.2",
"lodash": "^4.16.4",
"object.assign": "^4.0.4",
"socket.io": "^1.5.0",
"socket.io-client": "^1.5.1"
}
}