Initial commit

This commit is contained in:
2024-09-03 20:18:41 +00:00
parent d5074296fe
commit 06ae61f8be
20 changed files with 2937 additions and 0 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "butlerbotng",
"version": "1.0.0",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node --env-file .env src/index.js",
"register-slash-commands": "node --env-file .env src/register-slash-commands.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.3t.network/terriblecodeclub/butlerbotng.git"
},
"author": "Butlersaurus",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.7.7",
"date-fns": "^3.6.0",
"discord.js": "^14.16.1",
"glob": "^11.0.0",
"prettier": "^3.3.3"
},
"devDependencies": {
"eslint": "^9.9.1"
}
}