-
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.64 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.64 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": "mukyu-ai",
"version": "0.2.2",
"private": true,
"main": "electron/main.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"electron:dev": "electron .",
"electron:build": "node scripts/build-electron.js",
"electron:build:win": "node scripts/build-electron.js --win",
"electron:build:mac": "node scripts/build-electron.js --mac",
"electron:build:linux": "node scripts/build-electron.js --linux"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.106.0",
"@base-ui/react": "^1.6.0",
"@google/generative-ai": "^0.24.1",
"class-variance-authority": "^0.7",
"clsx": "^2",
"katex": "^0.17.0",
"lucide-react": "^0.562",
"mammoth": "^1.12.0",
"motion": "^12.42.0",
"next": "16.2.9",
"next-themes": "^0.4.6",
"openai": "^6.45.0",
"pdf-parse": "^1.1.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.1",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3",
"uuid": "^14.0.1",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/katex": "^0.16.8",
"@types/node": "^22.12.0",
"@types/pdf-parse": "^1.1.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^10.0.0",
"electron": "^42.5.1",
"electron-builder": "^26.15.3",
"eslint": "^9",
"eslint-config-next": "16.2.9",
"tailwindcss": "^4",
"typescript": "^5"
}
}