feat(core): scaffold account manager platform

This commit is contained in:
dmg
2026-08-01 13:03:26 -04:00
commit 9d305e5dc9
36 changed files with 11898 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
# Discord bot
The bot will provide ephemeral `/register` and `/account` responses containing short-lived one-time links. The target guild is read from admin-managed application settings rather than a deployment-only environment variable.
Implementation begins in Phase 2 alongside the one-time login service.
+16
View File
@@ -0,0 +1,16 @@
{
"name": "@minecraft-account-manager/discord-bot",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@minecraft-account-manager/contracts": "*",
"discord.js": "^14.25.1"
},
"devDependencies": {
"typescript": "^5.9.3"
}
}
+2
View File
@@ -0,0 +1,2 @@
// Discord command handling is added in Phase 2 after the one-time login service exists.
export {};
+7
View File
@@ -0,0 +1,7 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"types": ["node"]
},
"include": ["src/**/*.ts"]
}