-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 832 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 832 Bytes
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
{
"name": "discordjs-command-handler",
"version": "3.0.0",
"description": "A feature-rich Discord Bot Handler designed to simplify bot development with support for commands, components, events, and modern Discord features.",
"author": "Lukas Baum",
"license": "MIT",
"main": "src/index.ts",
"scripts": {
"start": "bun run src/index.ts",
"start:node": "ts-node src/index.ts --incremental",
"start:build": "node dist/index.js",
"format": "prettier --write \"src/**/*.ts\"",
"build": "tsc"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^22.17.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"dependencies": {
"bufferutil": "^4.0.9",
"discord.js": "^14.21.0",
"dotenv": "^16.6.1",
"utf-8-validate": "^6.0.5"
}
}