First functional version of Frostbot

This commit is contained in:
Frostbide
2024-12-22 23:18:16 -08:00
parent 8c122c1e37
commit 0a5769ec05
4 changed files with 190 additions and 0 deletions

19
package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "frostbot",
"version": "1.0.0",
"description": "Discord utility bot",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://git.0xfffe.org/frostbide/frostbot"
},
"keywords": [
"discord"
],
"author": "frostbide",
"license": "MIT",
"dependencies": {
"discord.js": "^14.16.3",
"dotenv": "^16.4.7"
}
}