-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
89 lines (89 loc) · 2.82 KB
/
package.json
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
{
"name": "Next-Langchain-Tauri",
"version": "0.3.0",
"private": true,
"scripts": {
"dev": "next dev -p 3100",
"build": "next build",
"start": "next start -p 3100",
"lint": "next lint",
"build-server": "esbuild ./server/server.ts --bundle --platform=node --outfile=./build/server.js",
"pkg-server": "pnpm build-server && pkg build/server.js -o ./src-tauri/bin/server-x86_64-apple-darwin"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.2",
"@fastify/cors": "^9.0.1",
"@langchain/community": "^0.0.44",
"@langchain/core": "^0.1.54",
"@langchain/openai": "^0.0.23",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@supabase/supabase-js": "^2.43.1",
"@tailwindcss/typography": "^0.5.12",
"@tauri-apps/api": "^1.5.3",
"ai": "^3.0.19",
"axios": "^1.6.8",
"cheerio": "1.0.0-rc.12",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.1",
"crypto-browserify": "^3.12.0",
"downloadjs": "^1.4.7",
"duck-duck-scrape": "2.2.5",
"embla-carousel-react": "^8.0.2",
"esbuild": "^0.20.2",
"exa-js": "^1.0.12",
"fastify": "^4.26.2",
"framer-motion": "^11.0.25",
"geist": "^1.3.0",
"html-to-image": "^1.11.11",
"langchain": "^0.1.31",
"lucide-react": "^0.363.0",
"nanoid": "^5.0.6",
"next": "14.1.4",
"next-themes": "^0.3.0",
"openai": "^4.33.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-intersection-observer": "^9.8.1",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"react-textarea-autosize": "^8.5.3",
"rehype-external-links": "^3.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.5"
},
"devDependencies": {
"@tauri-apps/cli": "^1.5.11",
"@types/d3-scale": "^4.0.8",
"@types/downloadjs": "^1.4.6",
"@types/node": "^20.12.5",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"@types/react-syntax-highlighter": "^15.5.11",
"autoprefixer": "^10.4.19",
"eslint": "8.57.0",
"eslint-config-next": "14.1.4",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.4"
}
}