-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 809 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 809 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": "bibble-assistant",
"version": "1.0.0",
"main": "dist/Discord/index.js",
"type": "module",
"scripts": {
"dev": "npx ts-node src/Discord/index.ts",
"build": "npx tsc",
"start": "npx tsc && node .",
"deploy-slash": "npx tsc && node ./dist/Discord/utils/deploy-commands.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@langchain/core": "^0.3.24",
"@langchain/google-webauth": "^0.1.4",
"@prisma/client": "^6.1.0",
"discord.js": "14.17.2",
"langchain": "^0.3.7",
"ts-node": "10.9.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.5",
"dotenv": "^16.4.7",
"prisma": "^6.1.0",
"typescript": "^5.7.2"
}
}