1
0

initial commit moving from old repo

This commit is contained in:
2026-05-01 20:41:47 +02:00
parent 0998d52dfc
commit 65b67875e1
9 changed files with 523 additions and 1 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"name": "role-wizard-discord-bot",
"version": "1.0.0",
"description": "A Discord bot for role management.",
"main": "index.js",
"scripts": {
"clean": "rm -rf build",
"build": "tsc --build",
"registerCommands": "npx ts-node src/register-commands.ts",
"start": "yarn clean && yarn build && yarn registerCommands && yarn runBot",
"startNoClean": "yarn build && yarn runBot",
"runBot": "node build/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"discord.js": "^14.14.1",
"dotenv": "^16.4.5"
}
}