-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.37 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
{
"name": "knowledge-base-rag-assistant",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@9.15.3",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"worker:ingest": "tsx src/workers/ingest-worker.ts",
"db:migrate": "tsx src/scripts/migrate.ts"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.41",
"@ai-sdk/react": "^3.0.0",
"@earendil-works/pi-agent-core": "^0.75.4",
"@earendil-works/pi-ai": "^0.78.0",
"@qdrant/js-client-rest": "^1.15.1",
"ai": "^6.0.83",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.468.0",
"mammoth": "^1.8.0",
"next": "^16.1.6",
"pdf-parse": "^1.1.1",
"pg": "^8.13.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"streamdown": "^2.5.0",
"tailwind-merge": "^2.5.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^22.10.2",
"@types/pg": "^8.11.10",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"eslint": "^9.17.0",
"eslint-config-next": "^16.1.6",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=22.19.0"
}
}