-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "discord-boilerplate-template",
"version": "1.1.1",
"description": "This template provides boilerplate code for Discord.js v14. Ready for slash command and everything you need to start out with your bot!",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"format": "prettier --write \"src/**/*.js\""
},
"dependencies": {
"@discordjs/rest": "^1.7.0",
"chalk-advanced": "^1.0.6",
"discord-api-types": "^0.37.38",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"prettier": "^3.0.2"
},
"devDependencies": {
"nodemon": "2.0.20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mezotv/Discord-Bot-Template.git"
},
"keywords": [
"discordjs",
"discord-bot",
"discordjs-v14"
],
"author": "mezotv (Dominik)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mezotv/Discord-Bot-Template/issues"
},
"homepage": "https://github.com/mezotv/Discord-Bot-Template#readme"
}