Initial commit

This commit is contained in:
2025-04-22 21:01:01 -04:00
parent c865355f2c
commit 4b93916aab
4 changed files with 237 additions and 0 deletions

25
package.json Normal file
View File

@ -0,0 +1,25 @@
{
"name": "comicdicebot",
"version": "0.0.1-beta",
"description": "Comic's Dice Bot",
"keywords": [
"discord",
"dice"
],
"repository": {
"type": "git",
"url": "https://git.cyper.cc/Cyper/ComicDiceBot"
},
"license": "MIT",
"author": "Cyper",
"type": "module",
"main": "app.ts",
"scripts": {
"build": "npx tsc app.ts --outDir dist",
"start": "npm run build && node dist/app.js"
},
"devDependencies": {
"@types/node": "^22.14.1",
"typescript": "^5.8.3"
}
}