-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "electron-sample-log",
"version": "1.0.0",
"description": "electron sample - log",
"main": "index.js",
"scripts": {
"start": "electron .",
"build-mac": "electron-builder --mac --x64",
"build-win": "electron-builder --win --x64"
},
"repository": {
"type": "git",
"url": "git+https://github.com/katsube/electron-sample-log.git"
},
"author": "M.Katsube",
"license": "MIT",
"bugs": {
"url": "https://github.com/katsube/electron-sample-log/issues"
},
"homepage": "https://github.com/katsube/electron-sample-log#readme",
"devDependencies": {
"electron": "^11.1.1",
"electron-builder": "^22.9.1"
},
"build": {
"appId": "net.makitokatsube.app.sample.log",
"files": [
"package.json",
"public/",
"index.js"
],
"mac": {
"target": "dmg"
},
"win": {
"target": "nsis"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"dependencies": {
"electron-log": "^4.3.1"
}
}