-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.65 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.65 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
{
"name": "botcord",
"productName": "Botcord",
"private": true,
"version": "0.2.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": "tsc && electron .",
"dev": "npm run compile-dev && electron .",
"compile-dev": "tsc --inlineSourceMap --inlineSources",
"build": "tsc && electron-builder",
"cleanup": "tsx scripts/cleanup.ts"
},
"build": {
"appId": "com.muffoi.botcord",
"productName": "Botcord",
"icon": "./resources/icon.ico",
"files": [
"!{tsconfig.json,github}",
"!**/*{.d.ts,.ts}",
"!{asarunpacked,CHANGELOG.txt,STYLEGUIDE.md,branding,.vscode,scripts}",
"!{_templateWiki,eslint.config.mjs,accounts.json}",
"!**/discordMarkdown.pegjs"
],
"win": {
"target": [
"portable",
"zip"
]
}
},
"dependencies": {
"@odiffey/discord-markdown": "^3.3.0",
"dayjs": "^1.11.13",
"discord.js": "^14.19.3",
"node-vibrant": "^4.0.3"
},
"devDependencies": {
"@types/node": "22.14.0",
"electron": "^36.1.0",
"electron-builder": "^26.0.12",
"glob": "^11.0.2",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}