-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 771 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "discord-mcp-server",
"version": "1.0.0",
"description": "Discord MCP server for integrating Discord with Claude",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsc -w",
"test": "npm run build && node --test tests/*.test.mjs",
"eval:conversation": "npm run build && node scripts/conversation-eval.mjs"
},
"keywords": [
"discord",
"mcp",
"claude"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"discord.js": "^14.14.1",
"dotenv": "^16.4.7",
"node-pty": "^1.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.16",
"typescript": "^5.3.3"
}
}