-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 759 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 759 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
{
"name": "fileway",
"version": "1.0.0",
"description": "LAN-only file sharing desktop app",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder --win",
"pack": "electron-builder --dir"
},
"author": "Fileway",
"license": "MIT",
"devDependencies": {
"electron": "^28.1.0",
"electron-builder": "^24.9.1"
},
"dependencies": {
"electron-store": "^8.1.0",
"uuid": "^9.0.0"
},
"build": {
"appId": "com.fileway.desktop",
"productName": "Fileway",
"directories": {
"output": "dist"
},
"win": {
"target": "nsis",
"icon": "assets/icon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}