-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 964 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 964 Bytes
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
{
"name": "dev-assistant",
"version": "0.1.0",
"description": "Asistente inteligente de documentación técnica con RAG, function Calling y claude API",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "tsx src/index.ts",
"start": "tsx src/index.ts",
"review": "tsx src/exercises/code-reviewer.ts",
"ingest": "tsx src/rag/ingest.ts",
"demo": "tsx src/agent/demo.ts",
"build": "tsc",
"typecheck": "tsc --noEmit"
},
"keywords": [
"ai",
"claude",
"openai",
"rag",
"function-calling"
],
"author": "DevAssistant Curso IA",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"better-sqlite3": "^12.9.0",
"dotenv": "^17.3.1",
"openai": "^6.32.0",
"readline": "^1.3.0",
"sqlite-vec": "^0.1.9",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.0"
}
}