-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.74 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.74 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
56
57
58
59
60
{
"name": "rag-data-pipeline",
"version": "0.0.1",
"description": "RAG Data Pipeline for managing and processing data for retrieval-augmented generation applications.",
"homepage": "https://github.com/RitualDevs/rag-data-pipeline",
"repository": {
"type": "git",
"url": "https://github.com/RitualDevs/rag-data-pipeline.git"
},
"author": "Buns Enchantress",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "ts-node src/scripts/test.ts",
"seed": "ts-node src/scripts/seed.ts",
"update": "ts-node src/scripts/update.ts",
"reset": "ts-node src/scripts/reset.ts",
"fix-collection": "ts-node src/scripts/fix-collection.ts",
"scrape-to-files": "ts-node src/scripts/scrape-to-files.ts",
"start:api": "ts-node src/server.ts",
"query": "ts-node src/scripts/query.ts"
},
"keywords": [
"ritualdevs",
"rag-data-pipeline",
"typescript",
"nodejs"
],
"license": "MIT",
"dependencies": {
"@ai-sdk/openai": "^1.3.22",
"@ai-sdk/react": "^1.2.12",
"@datastax/astra-db-ts": "^2.0.1",
"@langchain/community": "^0.3.47",
"@langchain/textsplitters": "^0.1.0",
"@types/express": "^5.0.3",
"ai": "^4.3.16",
"axios": "^1.10.0",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"jsdom": "^26.1.0",
"langchain": "^0.3.29",
"next": "^15.3.4",
"openai": "^5.8.0",
"puppeteer": "^24.10.2",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^22.15.33",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}