-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 992 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 992 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
33
34
35
36
37
38
39
40
41
{
"name": "discord-gemini-bot",
"version": "1.0.0",
"description": "Discord Bot with Gemini AI Integration",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "node -e \"try { require('./src/config/env') } catch(e) { if(e.code !== 'MODULE_NOT_FOUND') { console.error(e); process.exit(1) } }\""
},
"keywords": [
"discord",
"bot",
"gemini",
"ai",
"chatbot"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@napi-rs/canvas": "^0.1.77",
"chalk": "^4.1.2",
"chart.js": "^4.4.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"discord.js": "^14.22.1",
"dotenv": "^16.6.1",
"express": "^4.21.0",
"express-rate-limit": "^8.5.2",
"express-session": "^1.18.2",
"firebase": "^11.4.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"nodemon": "^3.0.2"
},
"engines": {
"node": ">=18.0.0"
}
}