{ "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", "register": "npx ts-node src/register-commands.ts", "start": "yarn clean && yarn build && yarn register && yarn runBot", "startNoClean": "yarn build && yarn runBot", "dockerBuild": "npm run clean && npm run build && yarn run register", "runBot": "node build/index.js" }, "keywords": [], "author": "", "license": "ISC", "dependencies": { "discord.js": "^14.14.1", "dotenv": "^16.4.5" } }