-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.36 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": "log-getter-kitaro",
"version": "1.0.0",
"description": "get gziplogs",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"pack:osx": "electron-builder --mac --x64",
"pack:win": "electron-builder --win --x64"
},
"keywords": [],
"author": "kitaro",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.694.0",
"electron-reload": "^1.5.0",
"electron-store": "^5.2.0",
"spectre.css": "^0.5.8"
},
"devDependencies": {
"electron": "^9.0.3",
"electron-builder": "^22.7.0",
"prettier": "^2.0.5"
},
"build": {
"appId": "com.electron.log-getter-kitaro",
"mac": {
"icon": "assets/mac/icon.icns",
"target": [
"dmg"
]
},
"win": {
"icon": "assets/win/icon.ico",
"target": "nsis"
},
"directories": {
"output": "docs"
},
"files": [
"assets",
"renderer",
"package.json",
"package-lock.json",
"DataStore.js",
"main.js",
"Window.js"
],
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}