-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1000 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1000 Bytes
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
{
"name": "study-plus-app",
"version": "1.0.0",
"description": "Student Helper AI App",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron:dev": "concurrently \"vite\" \"wait-on tcp:5173 && electron .\"",
"electron:build": "vite build && electron-builder"
},
"build": {
"appId": "com.studyplus.app",
"productName": "Study+",
"win": {
"target": "nsis"
},
"directories": {
"output": "dist-electron"
}
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@google/genai": "^1.37.0",
"uuid": "^9.0.0",
"lucide-react": "^0.263.1"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"vite": "^4.4.5",
"electron": "^25.3.0",
"electron-builder": "^24.6.3",
"concurrently": "^8.2.0",
"wait-on": "^7.0.1",
"typescript": "^5.0.2"
}
}