-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.43 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.43 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
{
"name": "sofos",
"version": "25.08.15",
"private": true,
"description": "A GPT/Claude client application",
"author": "Alexander Alexandrov",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start --hostname 0.0.0.0 --port 3000",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.45",
"@ai-sdk/google": "^3.0.29",
"@ai-sdk/openai": "^3.0.29",
"@ai-sdk/react": "^3.0.92",
"@ai-sdk/ui-utils": "^2.0.0-canary.3",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.2",
"@mui/base": "^5.0.0-beta.60",
"@mui/icons-material": "^6.1.5",
"@mui/material": "^6.1.5",
"@vercel/blob": "^2.2.0",
"ai": "^6.0.90",
"copy-to-clipboard": "^3.3.3",
"next": "^16.1.5",
"next-auth": "^4.24.13",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"react-responsive": "^10.0.1",
"react-syntax-highlighter": "^16.1.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "22.13.10",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-syntax-highlighter": "^15.5.7",
"eslint": "^9.26.0",
"eslint-config-next": "^16.1.6",
"typescript": "^5.9.3"
}
}