Installed the dotenv, chalk, and nodemon packages to the bot for a better development process. Console messages now have colors, prefixes, and text formatting, to able them requires the console.js file, it has all the messages formatted with the chalk package. Also moved the README.md and LICENSE to the .github folder.
27 lines
612 B
JSON
27 lines
612 B
JSON
{
|
|
"name": "templated.js",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node -r dotenv/config .",
|
|
"start-dev": "nodemon -r dotenv/config .",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [],
|
|
"author": "Lored",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@discordjs/builders": "^0.5.0",
|
|
"@discordjs/rest": "^0.1.0-canary.0",
|
|
"chalk": "^4.1.2",
|
|
"discord-api-types": "^0.22.0",
|
|
"discord.js": "^13.1.0",
|
|
"dotenv": "^10.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^7.31.0",
|
|
"nodemon": "^2.0.12"
|
|
}
|
|
}
|