1
0

move repo from github to gitea

This commit is contained in:
2024-03-14 22:17:39 +01:00
commit de71a376dc
9 changed files with 624 additions and 0 deletions

19
package.json Normal file
View File

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