feat(core): scaffold account manager platform
This commit is contained in:
@@ -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.
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
// Discord command handling is added in Phase 2 after the one-time login service exists.
|
||||
export {};
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"types": ["node"]
|
||||
},
|
||||
"include": ["src/**/*.ts"]
|
||||
}
|
||||
Reference in New Issue
Block a user