-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.45 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
{
"name": "DiscordChroma",
"version": "0.4.11",
"description": "Discord Chroma",
"main": "main.js",
"author": "DELUUXE",
"license": "ISC",
"build": {
"appId": "com.deluuxe.DiscordChroma",
"productName": "DiscordChroma",
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
],
"files": [
"!.vscode"
]
},
"publish": [
{
"provider": "github",
"owner": "DELUUXE",
"repo": "DiscordChroma"
}
],
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true
}
},
"scripts": {
"start": "electron .",
"package:mac": "electron-builder --mac",
"package:win": "electron-builder --win",
"package": "electron-builder --win",
"publish:win": "electron-builder --win -p always",
"publish": "electron-builder --win -p always"
},
"dependencies": {
"@chroma-cloud/chromajs": "^0.3.0-alpha",
"axios": "^0.24.0",
"discord-rpc": "^3.1.4",
"electron-log": "^4.0.0",
"electron-remote": "^1.3.0",
"electron-updater": "^4.3.8",
"express": "^4.17.1",
"minimist": "^1.2.5",
"node-fetch": "^2.6.1",
"node-notifier": "^9.0.0",
"open": "^7.0.0",
"process-exists": "^3.1.0"
},
"devDependencies": {
"electron": "^16.0.4",
"electron-builder": "^22.14.5",
"nan": "^2.11.1"
}
}