Files
aetheel-2/package.json

31 lines
758 B
JSON

{
"name": "discord-claude-gateway",
"version": "1.0.0",
"description": "Discord-Claude Gateway - Agent runtime platform connecting Discord to Claude via the Agent SDK",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest --run",
"test:watch": "vitest"
},
"license": "MIT",
"dependencies": {
"discord.js": "^14.25.1",
"dotenv": "^17.3.1",
"node-cron": "^4.2.1",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@types/node-cron": "^3.0.11",
"fast-check": "^4.5.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}