feat: initial prototype
Node.js CI / Lint and Test (push) Successful in 32s

This commit is contained in:
2025-11-08 15:26:36 -08:00
parent f3bd566832
commit e2a6a44741
13 changed files with 5004 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{
"name": "tyche",
"version": "0.0.0",
"description": "Discord bot to roll dice.",
"type": "module",
"scripts": {
"build": "tsc",
"lint": "eslint src --max-warnings 0",
"start": "op run --env-file=prod.env -- node prod/index.js",
"test": "echo \"Error: no test specified\" && exit 0"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.20.0",
"devDependencies": {
"@nhcarrigan/eslint-config": "5.2.0",
"@nhcarrigan/typescript-config": "4.0.0",
"@types/node": "24.10.0",
"eslint": "9.39.1",
"typescript": "5.9.3"
},
"dependencies": {
"@nhcarrigan/discord-analytics": "0.0.6",
"@nhcarrigan/logger": "1.1.1",
"discord.js": "14.24.2",
"fastify": "5.6.1"
}
}