-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.84 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "zedx-ai-desktop",
"version": "1.1.5",
"description": "Real-time AI Mock Interview & Training Simulator",
"author": "Ziad Emad",
"private": true,
"main": "electron/main.js",
"repository": {
"type": "git",
"url": "https://github.com/ziademad02153/ZEDX-AI-Assistant.git"
},
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint",
"electron:dev": "concurrently \"npm run dev\" \"wait-on http://localhost:3000 && electron .\"",
"dist": "npm run build && electron-builder",
"build:win": "npm run build && electron-builder --win",
"build:mac": "npm run build && electron-builder --mac"
},
"build": {
"appId": "com.zedx.ai",
"productName": "ZEDX AI",
"copyright": "Copyright © 2024 ZEDX AI",
"npmRebuild": false,
"asar": true,
"directories": {
"output": "dist",
"buildResources": "resources"
},
"files": [
"electron/**/*",
".next/**/*",
"public/**/*",
"package.json"
],
"win": {
"target": "nsis",
"icon": "public/favicon.png"
},
"mac": {
"target": "dmg",
"icon": "public/favicon.png"
},
"nsis": {
"oneClick": true,
"allowToChangeInstallationDirectory": false,
"createDesktopShortcut": true
},
"publish": [
{
"provider": "github",
"owner": "ziademad02153",
"repo": "zedx-ai-dist"
}
]
},
"dependencies": {
"@andresaya/edge-tts": "^1.8.0",
"@google/generative-ai": "^0.24.1",
"@huggingface/transformers": "^3.8.1",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-slot": "^1.1.15",
"@react-three/drei": "^10.7.8",
"@react-three/fiber": "^9.7.0",
"@ricky0123/vad-web": "^0.0.30",
"@supabase/ssr": "^0.12.5",
"@supabase/supabase-js": "^2.86.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron-updater": "^6.6.2",
"framer-motion": "^12.23.26",
"lucide-react": "^0.555.0",
"next": "^16.0.8",
"next-themes": "^0.4.6",
"nodemailer": "^9.0.6",
"onnxruntime-web": "^1.23.2",
"pdfjs-dist": "^5.4.449",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-icons": "^5.7.0",
"react-markdown": "^10.1.0",
"sonner": "^2.0.8",
"tailwind-merge": "^3.4.0",
"tesseract.js": "^7.0.0",
"three": "^0.185.1",
"unpdf": "^1.4.0",
"zustand": "^5.0.9"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/nodemailer": "^8.0.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.2.1",
"electron": "^39.2.7",
"electron-builder": "^26.0.12",
"eslint": "^9",
"eslint-config-next": "16.0.5",
"sharp": "^0.34.5",
"tailwindcss": "^4",
"typescript": "^5",
"wait-on": "^9.0.3"
}
}