-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 974 Bytes
/
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
{
"name": "electronflash",
"version": "0.0.1",
"author": "Loneth",
"description": "test",
"license": "MIT",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist-32bit": "yarn compile && electron-builder --ia32",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null"
},
"dependencies": {
"source-map-support": "^0.5.16"
},
"devDependencies": {
"electron": "8.2.0",
"electron-builder": "^22.4.1",
"electron-webpack": "^2.8.2",
"webpack": "~4.42.1"
},
"build": {
"appId": "com.electronflash",
"productName": "Electron Flash",
"nsis": {
"allowElevation": "true",
"oneClick": "false",
"perMachine": "true",
"allowToChangeInstallationDirectory": "true",
"deleteAppDataOnUninstall": "true",
"runAfterFinish": "true"
},
"extraResources": [
"./plugins/**"
]
}
}