This repository was archived by the owner on Nov 25, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "djs-command-handler",
"version": "1.0.0",
"description": "A Discord.js bot handler using ESM modules",
"main": "bot.js",
"type": "module",
"scripts": {
"lint": "eslint --ext .js,.ts . . --fix",
"start": "node bot",
"deploy": "node deploy",
"deploy-g": "node deploy guild"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NTMNathan/djs-command-handler.git"
},
"keywords": [
"discord-bot",
"discord-js",
"context-menus",
"discord-slash-commands",
"discord-context-menus",
"slash-commands",
"bot",
"discord",
"javascript",
"nodejs"
],
"author": "NTMNathan",
"license": "MIT",
"bugs": {
"url": "https://github.com/NTMNathan/djs-command-handler/issues"
},
"homepage": "https://github.com/NTMNathan/djs-command-handler#readme",
"devDependencies": {
"eslint": "^8.47.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0"
},
"dependencies": {
"@discordjs/rest": "^2.0.1",
"common-tags": "^1.8.2",
"dayjs": "^1.11.9",
"discord.js": "^14.13.0",
"dotenv": "^16.0.1"
}
}