-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.55 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
{
"name": "kaluma-agent",
"version": "0.9.3",
"author": "Minkyu Lee",
"engines": {
"node": "10.15.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaluma-project/kaluma-agent.git"
},
"main": "./app.js",
"scripts": {
"start": "electron ./app",
"dist": "electron-builder --publish=never",
"release": "electron-builder",
"postinstall": "npx electron-rebuild -f -w serialport"
},
"dependencies": {
"electron-updater": "^4.3.5",
"http-shutdown": "^1.2.2",
"@kaluma/cli": "^0.9.13",
"semver": "^7.3.4",
"serialport": "^9.0.6",
"socket.io": "^3.1.1",
"winston": "^3.3.3"
},
"devDependencies": {
"electron": "4.0.3",
"electron-builder": "^21.2.0",
"electron-rebuild": "^1.8.4",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0"
},
"build": {
"appId": "io.kaluma.kaluma-agent",
"productName": "Kaluma Agent",
"copyright": "Copyright© MKLabs Co.,Ltd.",
"electronCompile": false,
"npmRebuild": false,
"mac": {
"category": "public.app-category.developer-tools"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"nsis": {
"perMachine": true
}
},
"publish": {
"provider": "github",
"repo": "kaluma-agent",
"owner": "kaluma-project"
}
}