-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.74 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.74 KB
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
{
"name": "darkorbit-client",
"version": "2.5.1",
"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.4.9",
"electron-builder": "22.10.5"
},
"dependencies": {
"axios": "^0.21.1",
"electron-alert": "^0.1.14",
"electron-context-menu": "^3.1.1",
"electron-process-manager": "github:kaiserdj/electron-process-manager",
"electron-progressbar": "^2.0.1",
"electron-settings": "^4.0.2",
"electron-updater": "^4.3.9",
"menubar": "^9.0.5",
"open": "^8.2.1",
"sweetalert2": "^11.0.18",
"ws": "^7.5.2",
"xml2js": "^0.4.23",
"yargs": "^17.0.1"
},
"build": {
"appId": "com.DarkOrbitClient.Kaiserdj",
"productName": "DarkOrbit Client",
"extraResources": "./flash/**",
"target": "NSIS",
"directories": {
"buildResources": "assets",
"output": "dist"
},
"mac": {
"category": "public.app-category.games",
"target": "dmg"
},
"linux": {
"target": [
"AppImage"
],
"category": "Game"
},
"publish": [
{
"provider": "github",
"releaseType": "release",
"owner": "kaiserdj",
"repo": "Darkorbit-client"
}
]
}
}