-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.32 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
{
"name": "propia-genai-training",
"version": "0.1.0",
"private": true,
"description": "GenAI Training Path para Test Architects — caso de uso PropIA (plataforma inmobiliaria colombiana)",
"workspaces": [
"packages/*"
],
"scripts": {
"setup": "docker compose up -d && npm install && npm run seed",
"seed": "npm run seed:pdf && npm run seed:chromadb",
"seed:chromadb": "tsx scripts/seed-chromadb.ts",
"seed:pdf": "tsx scripts/generate-sample-pdf.ts",
"verify": "tsx scripts/verify-setup.ts",
"typecheck": "tsc --noEmit -p tsconfig.base.json"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/multer": "^2.1.0",
"@types/node": "^20.11.0",
"@types/uuid": "^10.0.0",
"tsx": "^4.7.0",
"typescript": "^5.4.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.96.0",
"@langchain/community": "^1.1.28",
"@langchain/core": "^1.1.46",
"@langchain/textsplitters": "^1.0.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/pdfkit": "^0.13.4",
"@xenova/transformers": "^2.0.1",
"chromadb": "^1.9.4",
"dotenv": "^16.4.5",
"express": "^5.2.1",
"langchain": "^1.4.0",
"multer": "^2.1.1",
"pdf-parse": "^2.4.5",
"pdfkit": "^0.15.0",
"uuid": "^14.0.0",
"zod": "^3.25.76"
},
"engines": {
"node": ">=20.0.0"
}
}