-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 KB
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
{
"name": "langchain",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "node scripts/build.js",
"build:tsc": "tsc -p tsconfig.json",
"build:clean": "rm -rf dist && npm run build:tsc",
"start": "node dist/index.js",
"start:prod": "NODE_ENV=production node dist/index.js",
"clean": "rm -rf dist"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@langchain/community": "^0.3.51",
"@langchain/core": "^0.3.71",
"@langchain/openai": "^0.6.7",
"chromadb": "^3.0.12",
"dotenv": "^17.2.1",
"duck-duck-scrape": "^2.2.7",
"express": "^5.1.0",
"express-async-errors": "^3.1.1",
"ioredis": "^5.7.0",
"langchain": "^0.3.30",
"pdf-parse": "^1.1.1",
"redis": "^5.8.1"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^24.3.0",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"tsx": "^4.20.4",
"typescript": "^5.9.2"
}
}