-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 3.07 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
{
"name": "smartspace",
"version": "1.0.0",
"description": "A production-grade, AI-powered web application for document ingestion, semantic search, and LLM-powered reasoning.",
"private": true,
"main": "electron/main.js",
"scripts": {
"dev": "next dev -p 3004",
"build": "next build",
"start": "next start -p 3004",
"lint": "next lint",
"electron": "electron .",
"electron:dev": "concurrently \"npm run dev\" \"wait-on http://localhost:3004 && electron .\"",
"electron:dev:logs": "node electron/dev-runner.js",
"electron:dev:verbose": "concurrently -p \"[{name}]\" -n \"NEXT,ELECTRON\" -c \"blue.bold,green.bold\" \"npm run dev\" \"wait-on http://localhost:3004 && electron .\"",
"electron:prod:test": "node electron/prod-test.js",
"electron:build": "ELECTRON_BUILD=true npm run build && electron-builder --config electron-builder.config.js",
"electron:pack": "ELECTRON_BUILD=true npm run build && electron-builder --config electron-builder.config.js --dir",
"electron:dist": "ELECTRON_BUILD=true npm run build && electron-builder --config electron-builder.config.js --publish=never",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.68.0",
"@playwright/browser-chromium": "^1.56.1",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.81.1",
"cheerio": "^1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"drizzle-kit": "^0.31.6",
"drizzle-orm": "^0.44.7",
"groq-sdk": "^0.35.0",
"lucide-react": "^0.553.0",
"next": "^14.2.0",
"next-themes": "^0.4.6",
"openai": "^6.8.1",
"pdf-parse-new": "^1.4.1",
"playwright": "^1.56.1",
"postgres": "^3.4.7",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-dropzone": "^14.3.8",
"react-markdown": "^10.1.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"tiktoken": "^1.0.22",
"zod": "^4.1.12",
"electron-is-dev": "^2.0.0",
"electron-store": "^8.2.0",
"electron-updater": "^6.6.2"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@types/node": "^20.14.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.0",
"electron": "^28.0.0",
"electron-builder": "^24.0.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.0",
"postcss": "^8.4.39",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.0",
"wait-on": "^8.0.1"
}
}