-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.42 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": "learning-langchain.js",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"demo1": "ts-node src/demo1.ts",
"demo2": "ts-node src/demo2.ts",
"demo3": "ts-node src/demo3.ts",
"demo4": "ts-node src/demo4.ts",
"joke": "ts-node src/joke.ts",
"tongyi": "ts-node src/tongyi.ts",
"agent-vector": "ts-node src/agent-vector.ts",
"joke-stream": "ts-node src/joke-stream.ts",
"json-mode": "ts-node src/json-mode.ts",
"extractionFunctionSchema": "ts-node src/extractionFunctionSchema.ts",
"serp-api": "ts-node src/serp-api.ts",
"serp-api-2": "ts-node src/serp-api-2.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "https://github.com/Kennytian",
"license": "ISC",
"dependencies": {
"@langchain/community": "^0.0.33",
"@langchain/core": "^0.1.39",
"@langchain/openai": "^0.0.15",
"dotenv": "^16.4.4",
"langchain": "^0.1.23",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.21",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}