-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 883 Bytes
/
package.json
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
{
"name": "discord-bot-neko",
"version": "1.0.0",
"description": "A Discord bot powered by Anthropic Claude and Google Gemini AI",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/**/*.js",
"start": "node src/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/llegomark/discord-bot-neko.git"
},
"author": "Mark Anthony Llego",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.20.8",
"@google/generative-ai": "^0.10.0",
"@upstash/redis": "^1.30.1",
"async": "^3.2.5",
"bottleneck": "^2.19.5",
"discord.js": "^14.15.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.2.0",
"pdf-parse": "^1.1.1"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"eslint": "^9.2.0",
"globals": "^15.1.0",
"jest": "^29.7.0",
"prettier": "3.2.5",
"supertest": "^7.0.0"
}
}