-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) 路 1.33 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) 路 1.33 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "langchain-rag-embeddings-study",
"version": "0.1.0",
"description": "Study repo for LangChain, RAG, embeddings, and semantic vector search techniques",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"studio": "drizzle-kit studio"
},
"keywords": [
"langchain",
"rag",
"embeddings",
"vector-search",
"semantic-search",
"study"
],
"author": "",
"license": "MIT",
"dependencies": {
"@langchain/community": "^0.3.42",
"@langchain/core": "^0.3.51",
"@langchain/openai": "^0.5.10",
"@langchain/textsplitters": "^0.1.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.43.1",
"langchain": "^0.3.24",
"pdf-parse": "^1.1.1",
"pg": "^8.15.6",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@types/pg": "^8.11.14",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"drizzle-kit": "^0.31.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}