-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.16 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "oxygen_wiki_bot",
"productName": "Oxygen Wiki Bot",
"version": "0.0.2",
"description": "Simple MediaWiki Bot",
"author": "MALYMATI2007",
"license": "MIT",
"main": "main.js",
"scripts": {
"start": "electron .",
"debug": "electron . -debug",
"dist": "electron-builder --x64 --ia32"
},
"dependencies": {
"@electron/remote": "^2.0.9",
"mwn": "^1.11.5"
},
"devDependencies": {
"electron": "^23.1.1",
"electron-builder": "^23.6.0"
},
"build": {
"appId": "pl.malymati2007.oxygen",
"productName": "Oxygen Wiki Bot",
"copyright": "Copyright (c) 2023 MALYMATI2007",
"win": {
"target": [ "nsis" ],
"icon": "src/icon.ico"
},
"linux": {
"target": [ "rpm" ]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"shortcutName": "Oxygen Wiki Bot",
"createDesktopShortcut": true,
"installerIcon": "build/installerIcon.ico",
"uninstallerIcon": "build/uninstallerIcon.ico"
},
"rpm": {},
"files": [
"!config.json",
"!.gitignore"
],
"extraFiles": ["langs/"],
"buildDependenciesFromSource": true
}
}