27 lines
740 B
JSON

{
"name": "@goosefactory/discord-bot",
"version": "1.0.0",
"description": "GooseFactory Discord bot — bridges factory events into Discord with rich embeds and interactive buttons",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"register-commands": "tsx src/register-commands.ts",
"typecheck": "tsc --noEmit"
},
"keywords": ["goosefactory", "discord", "bot", "mcp", "pipeline"],
"author": "GooseFactory",
"license": "MIT",
"dependencies": {
"discord.js": "^14.18.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/node": "^22.15.21",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}