forked from aiko-chan-ai/DiscordBotClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.2 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.2 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "discord-bot-client",
"version": "3.7.4",
"description": "Discord Bot Client - login into discord with a bot token",
"main": "./AppCore/index.js",
"dependencies": {
"discord-protos": "^1.2.43",
"electron-context-menu": "^4.1.0",
"electron-log": "^5.4.1",
"express": "^4.21.2",
"http-proxy": "^1.18.1",
"ini": "^5.0.0",
"lambert-server": "^1.2.12",
"level": "^9.0.0",
"level-supports": "^6.2.0",
"level-transcoder": "^1.0.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"murmurhash": "^2.0.1",
"probe-image-size": "^7.2.3",
"undici": "^7.11.0"
},
"devDependencies": {
"electron": "^37.2.0",
"electron-builder": "^26.0.12",
"git-clone": "^0.2.0",
"js-beautify": "^1.15.4",
"jsdom": "^26.1.0",
"node-abi": "^3.75.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"build": {
"files": [
"!scripts",
"!Vencord",
"!tsconfig.json",
"!tsup.config.ts",
"!DiscordProtos/.github",
"!DiscordProtos/discord_protos",
"!DiscordProtos/scripts",
"!DiscordProtos/src"
],
"appId": "DiscordBotClient",
"productName": "DiscordBotClient",
"artifactName": "${productName}-${os}-${arch}.${ext}",
"copyright": "Copyright © 2025 aiko-chan-ai",
"mac": {
"category": "public.app-category.social-networking",
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"x64"
]
}
],
"darkModeSupport": true,
"icon": "./AppAssets/DiscordBotClient.png",
"extendInfo": {
"NSMicrophoneUsageDescription": "This app needs access to the microphone",
"com.apple.security.device.audio-input": true
}
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
],
"desktop": {
"entry": {
"Name": "DiscordBotClient",
"GenericName": "Internet Messenger",
"Type": "Application",
"Categories": "Network;InstantMessaging;Chat;",
"Keywords": "discord;bot;vencord;electron;chat;"
}
},
"category": "Network",
"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",
"requirement": "npm install && node scripts/vencord.js",
"core:update": "node scripts/update.js",
"vencord": "cd Vencord && node --require=./scripts/suppressExperimentalWarnings.js scripts/build/buildWeb.mjs && cd .. && node scripts/copy.js",
"cerf": "openssl req -nodes -new -x509 -keyout ./AppCore/cert/server.key -out ./AppCore/cert/server.cert -days 3650 -subj \"/CN=localhost\"",
"test": "npm run vencord & npm run start",
"proto:install": "node scripts/cloneDiscordProtos.js",
"proto:update": "npx tsx DiscordProtos/src/load.ts",
"proto:build:ts": "cd DiscordProtos && npm run js && npm run build && cd .."
},
"author": {
"name": "aiko-chan-ai",
"email": "Aiko@shiroko.onmicrosoft.com"
},
"repository": {
"url": "https://github.com/aiko-chan-ai/DiscordBotClient/"
},
"license": "ISC",
"productName": "Discord Bot Client"
}