-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
72 lines (72 loc) · 1.57 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
{
"name": "csgo-mm-server-picker",
"version": "v1.2.3",
"description": "Server picker for CS:GO matchmaking",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "build --dir",
"dist": "electron-builder",
"publish": "./node_modules/.bin/electron-builder electron-builder --publish always"
},
"author": "Jyben <benjamin.letessier@gmail.com>",
"license": "CC-BY-NC-ND-4.0",
"repository": {
"type": "git",
"url": "https://github.com/Jyben/csgo-mm-server-picker.git"
},
"devDependencies": {
"electron": "^11.5.0",
"electron-builder": "^22.9.1"
},
"dependencies": {
"axios": "^0.21.2",
"electron-log": "^3.0.6",
"electron-updater": "^4.3.1",
"glob": "^7.1.4",
"simple-node-logger": "^18.12.24",
"sudo-prompt": "^8.2.5"
},
"build": {
"appId": "com.csgommserverpicker.app",
"productName": "CSGO MM Server Picker",
"copyright": "Copyright © year ${author}",
"directories": {
"buildResources": "build",
"output": "dist"
},
"publish": [
{
"provider": "github",
"owner": "Jyben",
"vPrefixedTagName": "true",
"host": "github.com",
"protocol": "https",
"releaseType": "release"
}
],
"dmg": {},
"linux": {
"target": [
"AppImage"
],
"publish": [
"github"
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
],
"publish": [
"github"
]
}
}
}