-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 918 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 918 Bytes
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
{
"name": "wowup-updater",
"version": "1.0.4",
"description": "WowUp app updater",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder --win portable",
"postinstall": "electron-builder install-app-deps"
},
"repository": "https://github.com/jliddev/WowUpUpdater",
"keywords": [
"wow",
"wowup",
"world of warcraft",
"updater"
],
"author": "jliddev",
"license": "ISC",
"build": {
"appId": "wowup.io",
"productName": "WowUpUpdater",
"win": {
"artifactName": "${productName}.${ext}"
}
},
"devDependencies": {
"electron": "^10.1.1",
"electron-builder": "^22.8.0"
},
"dependencies": {
"adm-zip": "^0.4.16",
"commander": "^6.1.0",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"taskkill": "^3.1.0",
"uuid": "^8.3.0",
"winston": "^3.3.3"
}
}