-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.24 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
46
47
48
49
50
51
{
"name": "langchain-example",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"license": "Apache-2.0",
"private": false,
"engines": {
"node": ">= 14.0.0",
"npm": ">= 6.0.0"
},
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/xavidop/langchain-example"
},
"bugs": "https://github.com/xavidop/langchain-example/issues",
"keywords": [],
"author": {
"name": "Xavier Portilla Edo",
"email": "xavi_tb@hotmail.com",
"url": "https://github.com/xavidop/langchain-example"
},
"contributors": [],
"dependencies": {
"@langchain/core": "^0.2.28",
"@langchain/google-vertexai": "^0.0.27",
"@langchain/openai": "^0.2.7",
"@types/node": "^22.5.0",
"dotenv": "^16.4.5",
"langchain": "^0.2.17",
"typescript": "^5.5.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"tsx": "^4.18.0",
"typescript-eslint": "^8.2.0"
},
"scripts": {
"build": "tsc",
"start": "node ./dist/app.js",
"dev": "tsx ./src/app.ts",
"lint": "eslint src",
"lint:fix": "eslint src/ --fix",
"dev:watch": "tsx --watch --inspect-brk ./src/app.ts"
}
}