-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 787 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 787 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
{
"name": "zeroshift",
"private": true,
"version": "1.0.0",
"description": "A Discord AI Bot",
"main": "app.js",
"type": "module",
"engines": {
"node": ">=18.x"
},
"scripts": {
"start": "node app.js",
"register": "node commands.js",
"dev": "nodemon app.js"
},
"author": "Shay DeWael",
"license": "MIT",
"dependencies": {
"@google/genai": "^0.8.0",
"@google/generative-ai": "^0.22.0",
"axios": "^1.8.1",
"discord-interactions": "^4.0.0",
"discord.js": "^14.18.0",
"dotenv": "^16.4.7",
"express": "^4.18.2",
"from": "^0.1.7",
"intents": "^0.1.1",
"mongodb": "^6.14.0",
"node-fetch": "^3.3.2",
"openssl-nodejs": "^1.0.5",
"ws": "^8.18.1"
},
"devDependencies": {
"nodemon": "^3.0.0"
}
}