forked from ColdByDefault/princeps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.46 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.46 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
88
89
90
91
92
93
94
95
96
97
{
"name": "princeps",
"version": "1.0.7",
"description": "Princeps is a private AI workspace for chat, knowledge retrieval, and assistant system tuning.",
"keywords": [
"princeps",
"personal assistant",
"ai assistant",
"ai workspace",
"private ai workspace",
"knowledge base",
"retrieval augmented generation",
"rag",
"document chat",
"system prompt tuning",
"next.js",
"react",
"typescript",
"tailwindcss",
"shadcn-ui",
"better-auth",
"prisma",
"pgvector",
"ollama",
"azure openai",
"multilingual"
],
"author": "Yazan Abo-Ayash (ColdByDefault™)",
"license": "SEE LICENSE IN LICENSE",
"private": true,
"scripts": {
"dev": "tsx scripts/db-healthcheck.ts && next dev --turbopack",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"db:reset": "prisma migrate reset --force",
"db:seed": "tsx scripts/seed.ts",
"db:seed:reset": "tsx scripts/seed.ts --reset"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.37.0",
"better-auth": "^1.5.5",
"chart": "^0.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.3.1",
"googleapis": "^171.4.0",
"langfuse": "^3.38.20",
"lucide-react": "^0.577.0",
"mammoth": "^1.12.0",
"motion": "^12.38.0",
"next": "16.2.3",
"next-intl": "^4.9.0",
"next-themes": "^0.4.6",
"ogl": "^1.0.11",
"pdf-parse": "^2.4.5",
"pg": "^8.20.0",
"prisma": "^7.6.0",
"react": "19.2.4",
"react-day-picker": "^9.14.0",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"stripe": "^22.0.1",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pdf-parse": "^1.1.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"shadcn": "^4.3.0",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"typescript-eslint": "^8.56.1"
},
"overrides": {
"hono": "^4.12.7",
"lodash": "^4.17.23",
"@hono/node-server": "^1.19.10"
}
}