-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
118 lines (118 loc) · 3.03 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
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
{
"name": "discord-bot-client",
"version": "3.6.2",
"description": "Discord Bot Client - login into discord with a bot token",
"main": "./AppCore/index.js",
"dependencies": {
"@protobuf-ts/plugin": "<3.0.0",
"@protobuf-ts/protoc": "<3.0.0",
"@protobuf-ts/runtime": "<3.0.0",
"electron-context-menu": "3.6.1",
"electron-log": "^5.2.4",
"express": "^4.21.2",
"lambert-server": "^1.2.12",
"level": "^9.0.0",
"level-supports": "^6.2.0",
"level-transcoder": "^1.0.1",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"murmurhash": "^2.0.1",
"probe-image-size": "^7.2.3",
"request": "^2.88.2",
"undici": "^7.2.3"
},
"devDependencies": {
"electron": "^32.1.2",
"electron-builder": "^25.1.8",
"jsdom": "^25.0.1",
"puppeteer": "^22.13.0",
"tsup": "8.1.2",
"typescript": "^5.7.2"
},
"build": {
"files": [
"!scripts",
"!VencordDBC",
"!tsconfig.json",
"!tsup.config.ts"
],
"appId": "DiscordBotClient",
"productName": "DiscordBotClient",
"artifactName": "${productName}-${os}-${arch}.${ext}",
"copyright": "Copyright © 2025 @elysia.dev",
"mac": {
"category": "public.app-category.social-networking",
"target": [
{
"target": "dmg",
"arch": [
"arm64"
]
}
],
"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": {
"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 && npm run npmVencord",
"fetchLatestDiscordBuild": "node scripts/update.js",
"npmVencord": "cd VencordDBC && npm i -f && cd ..",
"vencord": "cd VencordDBC && node --require=./scripts/suppressExperimentalWarnings.js scripts/build/buildWeb.mjs && cd ..",
"cerf": "openssl req -nodes -new -x509 -keyout server.key -out server.cert -days 3650 -subj \"/CN=localhost\"",
"test": "npm run vencord & npm run start",
"proto:update": "tsx DiscordProtos/src/load.ts",
"proto:build:win": "cd DiscordProtos && npm run js && cd ..",
"proto:build:ts": "tsup"
},
"author": {
"name": "aiko-chan-ai",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/aiko-chan-ai/DiscordBotClient/"
},
"license": "ISC",
"productName": "Discord Bot Client"
}