-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (37 loc) · 784 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (37 loc) · 784 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
42
43
{
"name": "oudl",
"version": "1.0.0-INDEV",
"description": "Open-source openfront.io Electron launcher",
"homepage": "https://github.com/NotAndrej/oudl",
"author": "Not Andrej",
"license": "AGPL-3.0",
"main": "main.js",
"type": "commonjs",
"scripts": {
"start": "electron .",
"dist": "electron-builder"
},
"dependencies": {
"discord-rpc": "^4.0.1",
"electron-store": "^11.0.2"
},
"devDependencies": {
"electron": "^40.1.0",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "io.oudl",
"productName": "OUDL",
"linux": {
"target": ["dir"]
},
"win": {
"target": ["nsis"],
"icon": "logo.ico"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true}
}
}