-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.57 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
{
"name": "aria",
"version": "0.1.0",
"private": true,
"description": "Aria — a private, source-grounded personal AI workspace (Chief of Staff + Second Brain).",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"eval:retrieval": "node scripts/eval-retrieval.js"
},
"dependencies": {
"@ai-sdk/anthropic": "^0.0.51",
"@ai-sdk/google": "^0.0.52",
"@ai-sdk/openai": "^0.0.66",
"@composio/core": "^0.13.1",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.45.4",
"@vercel/analytics": "^2.0.1",
"ai": "^3.4.7",
"clsx": "^2.1.1",
"highlight.js": "^11.10.0",
"lucide-react": "^0.446.0",
"mammoth": "^1.8.0",
"next": "14.2.13",
"pdf-parse": "^1.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"rehype-highlight": "^7.0.0",
"remark-gfm": "^4.0.0",
"server-only": "^0.0.1",
"tailwind-merge": "^2.5.2",
"thinking-orbs": "^0.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.16.10",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"dotenv": "^17.4.2",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.13",
"playwright": "^1.61.1",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"vitest": "^2.1.2"
},
"engines": {
"node": ">=18.18.0"
}
}