-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.11 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.11 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
52
53
54
55
{
"name": "docurag",
"version": "1.0.1",
"description": "A RAG-based document question answering system",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "mkdir -p dist && cp index.js dist/",
"prepublishOnly": "npm run build"
},
"keywords": [
"pdf",
"rag",
"llm",
"chat",
"ai",
"documents",
"vector-database",
"qdrant"
],
"author": "Yannis Kolovos",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/msroot/docuRAG.js.git"
},
"bugs": {
"url": "https://github.com/msroot/docuRAG.js/issues"
},
"homepage": "https://github.com/msroot/docuRAG.js#readme",
"dependencies": {
"@qdrant/js-client-rest": "^1.7.0",
"axios": "^1.6.7",
"langchain": "^0.3.19",
"multer": "^1.4.5-lts.1",
"pdf-parse": "^1.1.1",
"uuid": "^9.0.1"
},
"peerDependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"nodemon": "^3.0.3"
}
}