begin rewriting first services to be domain agnostic

more rewrites
This commit is contained in:
2026-02-17 22:42:36 +01:00
parent b3766b9584
commit 071fe2f891
45 changed files with 915 additions and 521 deletions

View File

@@ -1,16 +1,30 @@
{
"name": "@avocadi/bot-adapter-discord",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"build": "tsdown",
"dev:prod": "NODE_ENV=production tsdown --watch & node --watch ./dist/index.js",
"dev": "NODE_ENV=development tsdown --watch & node --watch ./dist/index.js"
},
"devDependencies": {
"@types/bun": "latest"
"@types/bun": "latest",
"tsdown": "catalog:"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"zod": "catalog:",
"@avocadi/bot-core": "workspace:*"
"@avocadi/bot-core": "workspace:*",
"@discordjs/rest": "^2.6.0",
"cron": "^4.4.0",
"discord.js": "^14.25.1",
"dotenv": "^17.3.1",
"dotenv-expand": "^12.0.3",
"zod": "catalog:"
},
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
}
}