-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
78 lines (78 loc) · 2.21 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "darkorbit-client",
"version": "2.8.0",
"description": "Open source darkorbit client",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/kaiserdj/Darkorbit-client.git"
},
"scripts": {
"start": "electron .",
"dev": "electron . --d",
"postinstall": "electron-builder install-app-deps",
"build": "electron-builder --publish=always",
"release": "electron-builder --publish always",
"local-build": "electron-builder",
"pack": "electron-builder --dir"
},
"author": "Kaiserdj",
"license": "ISC",
"devDependencies": {
"electron": "11.5.0",
"electron-builder": "^24.4.0"
},
"dependencies": {
"axios": "1.4.0",
"electron-alert": "^0.1.20",
"electron-context-menu": "^3.6.1",
"electron-positioner": "^4.1.0",
"electron-process-manager": "github:kaiserdj/electron-process-manager",
"electron-progressbar": "^2.1.0",
"electron-settings": "^4.0.2",
"electron-updater": "^6.1.0",
"menubar": "^9.3.0",
"open": "8.4.2",
"sweetalert2": "^11.7.11",
"ws": "^8.13.0",
"xml2js": "^0.6.0",
"yargs": "^17.7.2"
},
"build": {
"appId": "com.DarkOrbitClient.Kaiserdj",
"productName": "DarkOrbit Client",
"extraResources": [
"./flash/**",
"./darkDev/packet_dumper.py"
],
"directories": {
"buildResources": "assets",
"output": "dist"
},
"protocols": {
"name": "darkorbit-client",
"schemes": [
"darkorbit-client"
]
},
"mac": {
"target": ["dmg", "zip"],
"category": "public.app-category.games",
"extendInfo": "darkorbit-client"
},
"linux": {
"target": [
"AppImage"
],
"category": "Game"
},
"publish": [
{
"provider": "github",
"releaseType": "release",
"owner": "kaiserdj",
"repo": "Darkorbit-client"
}
]
}
}