-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.76 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.76 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": "opencode-sync",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"convex": "convex dev",
"convex:deploy": "convex deploy",
"sync:docs": "npx tsx scripts/sync-docs.ts",
"sync:docs:prod": "SYNC_ENV=production npx tsx scripts/sync-docs.ts",
"build:search-index": "npx tsx scripts/build-search-index.ts"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.12",
"@convex-dev/eslint-plugin": "^1.1.1",
"@convex-dev/rag": "^0.7.0",
"@convex-dev/workos": "^0.0.1",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@workos-inc/authkit-react": "^0.16.0",
"@workos-inc/node": "^8.0.0",
"@workos-inc/widgets": "^1.7.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"convex": "^1.17.0",
"fuse.js": "^7.0.0",
"html2canvas": "^1.4.1",
"lucide-react": "^0.312.0",
"nanoid": "^5.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.22.0",
"react-syntax-highlighter": "^16.1.0",
"tailwind-merge": "^2.2.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/react-syntax-highlighter": "^15.5.11",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.0",
"glob": "^10.3.10",
"gray-matter": "^4.0.3",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"vite": "^6.4.1"
}
}