-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.24 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
{
"name": "discord-rpc-gui",
"version": "1.0.0",
"description": "Graphical user interface designed in Electron to allow full customisation of Discord's Rich Presence",
"main": "app/main/main.js",
"build": {
"appId": "fun.benny.discord-rpc-gui",
"productName": "Discord RPC GUI",
"directories": {
"output": "dist"
},
"files": [
"app/**/*",
"node_modules/**/*"
],
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"win": {
"target": [
{
"target": "zip",
"arch": [
"x64"
]
},
{
"target": "msi",
"arch": [
"x64"
]
}
]
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron app/main/main.js",
"dist": "electron-builder"
},
"author": "",
"license": "ISC",
"dependencies": {
"discord-rpc": "^4.0.1",
"express": "^4.21.2"
},
"devDependencies": {
"electron": "^33.3.1",
"electron-builder": "^25.1.8"
}
}