1
0
This repository has been archived on 2024-10-18. You can view files and clone it, but cannot push or open issues or pull requests.
Files
role-wizard-discord-bot/package.json
2024-05-29 21:29:26 +02:00

20 lines
481 B
JSON

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