-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.35 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "chapter3",
"version": "0.1.0",
"description": "Discord chat bot framework with multi-LLM support and MCP integration",
"type": "module",
"main": "dist/main.js",
"scripts": {
"dev": "tsx src/main.ts",
"build": "tsc",
"start": "node dist/main.js",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"test": "vitest",
"test:watch": "vitest --watch"
},
"keywords": [
"discord",
"bot",
"llm",
"mcp",
"anthropic"
],
"author": "",
"license": "MIT",
"dependencies": {
"@animalabs/membrane": "^0.5.47",
"@anthropic-ai/sdk": "^0.32.1",
"@aws-sdk/client-bedrock-runtime": "^3.709.0",
"@google/generative-ai": "^0.21.0",
"@modelcontextprotocol/sdk": "^1.0.4",
"@types/express": "^5.0.5",
"discord.js": "^14.16.3",
"express": "^5.1.0",
"openai": "^4.73.1",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"sharp": "^0.33.5",
"ws": "^8.19.0",
"yaml": "^2.6.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.16.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20.0.0"
}
}