-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.48 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
{
"name": "frostydesktop",
"version": "1.0.2",
"description": "Desktop client for frosty.gg",
"main": "main.js",
"scripts": {
"start": "electron .",
"make-win": "electron-builder build --win --publish never",
"make-mac": "electron-builder build --mac --publish never",
"make-linux": "electron-builder build --linux --publish never",
"make-win-publish": "electron-builder build --win --publish onTagOrDraft",
"make-mac-publish": "electron-builder build --mac --publish onTagOrDraft",
"make-linux-publish": "electron-builder build --linux --publish onTagOrDraft"
},
"bugs": {
"url": "https://github.com/frostygg/desktop/issues"
},
"homepage": "https://github.com/frostygg/desktop#readme",
"repository": "https://github.com/frostygg/desktop",
"author": "daniel11420/The Frosty Development Team",
"license": "BSD-2-Clause",
"devDependencies": {
"electron": "^8.5.2",
"electron-builder": "^22.7.0"
},
"dependencies": {
"discord-rpc": "^3.1.0",
"electron-is-dev": "^1.1.0",
"electron-updater": "^4.2.0",
"fs": "0.0.1-security",
"minimist": "^1.2.6"
},
"build": {
"appId": "com.frostygg.desktop",
"productName": "Frosty Desktop",
"asar": "false",
"win": {
"publish": "github"
},
"mac": {
"publish": "github"
},
"linux": {
"target": "AppImage",
"publish": "github"
},
"dmg": {
"window": {
"width": "540",
"height": "380"
}
}
}
}