forked from NTMNathan/djs-class-handler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.2 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
{
"name": "djs-class-handler",
"version": "1.2.2",
"description": "A Discord.js Command Class Handler example using Slash Commands and Context Menus.",
"main": "bot.js",
"scripts": {
"lint": "eslint --ext .js,.ts . ./ --fix",
"start": "node bot",
"deploy": "node deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NTMNathan/djs-class-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-class-handler/issues"
},
"homepage": "https://github.com/NTMNathan/djs-class-handler#readme",
"dependencies": {
"@discordjs/rest": "^2.0.1",
"common-tags": "^1.8.2",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"eslint": "^8.48.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1"
}
}