-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 873 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 873 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
{
"name": "WaterfallExplorer",
"productName": "Waterfall Explorer",
"description": "My Electron application description",
"keywords": [],
"main": "./src/main.js",
"version": "1.4.0",
"author": "Sean Sun",
"scripts": {
"start": "electron .",
"dist": "electron-builder",
"dist_linux": "electron-builder --linux"
},
"dependencies": {
"auto-launch": "^5.0.5",
"fs-extra": "^10.1.0",
"sweetalert2": "^11.4.10"
},
"devDependencies": {
"electron": "18.0.4",
"electron-builder": "^23.1.0"
},
"build": {
"appId": "org.seansun.waterfallexplorer",
"productName": "Waterfall Explorer",
"target": [
"NSIS",
"deb"
],
"extraFiles": [
{
"from": "./src/backgroundWorker.js",
"to": "./src/backgroundWorker.js",
"filter": [
"**/*"
]
}
]
}
}