forked from aiko-chan-ai/DiscordBotClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.58 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": "discord-bot-client",
"version": "2.4.1",
"DiscordBuildVersion": 204762,
"description": "Discord Bot Client - login into discord with a bot token",
"main": "./AppCore/index.js",
"dependencies": {
"axios": "1.1",
"discord-protos": "^1.0.4",
"electron-log": "^4.4.8",
"electron-store": "^8.1.0",
"express": "^4.18.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-fetch": "^2.6.7",
"request": "^2.88.2",
"socket.io": "^4.6.2",
"ws": "^8.12.1"
},
"devDependencies": {
"electron": "^15.5.7",
"electron-builder": "^23.6.0"
},
"build": {
"appId": "DiscordBotClient",
"productName": "DiscordBotClient",
"artifactName": "${productName}-${os}-${arch}.${ext}",
"electronVersion": "15.5.7",
"copyright": "Copyright © 2023 Elysia#1782",
"mac": {
"category": "public.app-category.social-networking",
"target": [
"dmg"
],
"icon": "./AppAssets/DiscordBotClient.png"
},
"linux": {
"target": [
"AppImage"
],
"icon": "./AppAssets/DiscordBotClient.png"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "./AppAssets/DiscordBotClient.png"
},
"asar": false
},
"scripts": {
"start": "electron AppCore\\index.js",
"mac": "electron-builder -m",
"win": "electron-builder -w",
"linux": "electron-builder -l",
"build": "electron-builder"
},
"author": {
"name": "aiko-chan-ai",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/aiko-chan-ai/DiscordBotClient/"
},
"license": "ISC",
"productName": "Discord Bot Client"
}