-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.12 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.12 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
{
"name": "betterdiscordbot",
"version": "0.1.0",
"description": "Discord bot for BetterDiscord",
"main": "src/index.ts",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "bun run --bun src/index.ts",
"deploy": "bun run --bun scripts/deploy-commands.ts",
"clear": "bun run --bun scripts/deploy-commands.ts --clear",
"validate": "bun run --bun scripts/validate-env.ts"
},
"author": "Zerebos",
"license": "MIT",
"devDependencies": {
"@types/string-similarity": "^4.0.2",
"@zerebos/eslint-config": "file:../../eslint-configs/packages/base",
"@zerebos/eslint-config-typescript": "file:../../eslint-configs/packages/typescript",
"eslint": "^9.39.1"
},
"dependencies": {
"@discordjs/core": "^2.4.0",
"@discordjs/rest": "^2.6.0",
"@keyv/sqlite": "^4.0.6",
"discord.js": "^14.25.1",
"dotenv": "^17.2.3",
"keyv": "^5.5.5",
"sqlite3": "^5.1.7",
"string-similarity": "^4.0.4",
"undici": "^7.16.0"
},
"overrides": {
"sqlite3": {
"prebuild-install": "7.1.3"
},
"react": "./djsx/index.ts"
}
}