-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "botcord",
"productName": "Botcord",
"private": true,
"version": "0.1.0",
"description": "Unofficial Discord client for bot accounts",
"homepage": "https://github.com/muffoi/Botcord#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/muffoi/Botcord.git"
},
"bugs": {
"url": "https://github.com/muffoi/Botcord/issues"
},
"license": "GPL-3.0-or-later",
"author": "Muffoi",
"main": "main.js",
"scripts": {
"start": "electron .",
"debug": "electron --inspect=5858 --inspect-brk .",
"build": "electron-builder"
},
"build": {
"appId": "botcordclient",
"productName": "Botcord",
"icon": "./resources/icon.ico",
"files": [
"!accounts.json",
"!**/discordMarkdown.pegjs",
"!{eslint.config.mjs,tsconfig.json}",
"!{_templateWiki,asarunpacked,unpack.bat,CHANGELOG.txt}",
"!branding"
],
"win": {
"target": [
"portable",
"zip"
]
}
},
"dependencies": {
"@odiffey/discord-markdown": "^3.3.0",
"dayjs": "^1.11.13",
"discord.js": "^14.16.3",
"node-vibrant": "^3.1.6"
},
"devDependencies": {
"electron": "^29.1.1",
"electron-builder": "^25.1.7"
}
}