-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.28 KB
/
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
38
39
40
41
42
43
44
45
{
"name": "discord-ai-bot",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"build": "tsc && mkdir -p dist/files && cp -r src/files/*.* dist/files",
"start": "tsc && node dist/index.js",
"start-bg": "nohup tsc && node dist/index.js &",
"lint": "eslint . --ext .ts",
"dev": "eslint --fix --ext .ts ./src/index.ts && nodemon",
"invite:dev": "ts-node src/bin/invite.ts",
"invite:start": "tsc && node dist/bin/invite.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@langchain/community": "^0.0.54",
"@langchain/core": "^0.1.61",
"@langchain/openai": "^0.0.28",
"@prisma/client": "^5.14.0",
"@supabase/supabase-js": "^2.41.1",
"cron": "^3.1.7",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"langchain": "^0.1.36",
"nodemon": "^3.1.0",
"openai": "^4.29.2",
"podcast": "^2.0.1",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"commander": "^12.0.0",
"eslint": "^8.57.0",
"prettier": "3.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}