-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.63 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.63 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "open-recall",
"version": "1.0.0",
"private": true,
"description": "Privacy-focused, local-first Personal Knowledge Management powered by GraphRAG",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rupertgermann/open-recall.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "node --test --experimental-strip-types tests/**/*.test.ts",
"lint": "next lint",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.86",
"@ai-sdk/react": "^2.0.115",
"@mozilla/readability": "^0.6.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-query": "^5.59.0",
"@xyflow/react": "^12.10.0",
"ai": "^5.0.113",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"drizzle-orm": "^0.36.0",
"embla-carousel-react": "^8.6.0",
"jsdom": "^25.0.1",
"lucide-react": "^0.460.0",
"motion": "^12.23.26",
"nanoid": "^5.1.6",
"next": "^16.0.8",
"next-themes": "^0.4.6",
"pdfjs-dist": "^4.7.76",
"postgres": "^3.4.5",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-force-graph-2d": "^1.25.5",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"shiki": "^3.20.0",
"streamdown": "^1.6.10",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"tokenlens": "^1.3.1",
"use-stick-to-bottom": "^1.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.22",
"drizzle-kit": "^0.31.9",
"eslint": "^9.14.0",
"eslint-config-next": "^16.0.8",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3"
},
"overrides": {
"esbuild": "^0.25.0"
}
}