-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
38 lines (38 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
{
"name": "discord-rpc",
"version": "0.3.0",
"description": "",
"dependencies": {
"@xhayper/discord-rpc": "^1.2.0",
"systray": "^1.0.5",
"ws": "^7.1.1"
},
"devDependencies": {
"archiver": "^3.1.1",
"create-nodew-exe": "^1.0.5",
"pkg": "^5.8.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:win && npm run build:linux && npm run build:macos && npm run build:pack",
"build:win": "npm run build:win:64",
"build:win:64": "pkg -c Server/pkg/win.json --out-path ./dist -t latest-win-x64 Server/win_tray_server.js && create-nodew-exe ./dist/server_win_64bit_debug.exe ./dist/server_win_64bit.exe",
"build:linux": "npm run build:linux:64 && npm run build:linux:32",
"build:linux:64": "pkg -c Server/pkg/linux.json --out-path ./dist -t latest-linux-x64 Server/linux_tray_server.js",
"build:linux:32": "pkg -o ./dist/server_linux_no_tray_debug -t latest-linux-x64 server.js",
"build:macos": "npm run build:macos:64 && npm run build:macos:32",
"build:macos:64": "pkg -c Server/pkg/mac.json --out-path ./dist -t latest-macos-x64 Server/linux_tray_server.js",
"build:macos:32": "pkg -o ./dist/server_macos_no_tray_debug -t latest-macos-x64 server.js",
"build:pack": "node Server/pkg/pack.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lolamtisch/discord-rpc.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/lolamtisch/discord-rpc/issues"
},
"homepage": "https://github.com/lolamtisch/discord-rpc#readme"
}