-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.12 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.12 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
{
"name": "VisuaLearn",
"private": true,
"version": "0.0.0",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"build:vite": "vite build --watch",
"build:electron": "tsc -p tsconfig.electron.json --watch",
"start:electron": "npx wait-on http://127.0.0.1:5173 && npx cross-env VITE_DEV_SERVER_URL=http://127.0.0.1:5173/ npx electron .",
"electron:dev": "npx concurrently -k \"npm run build:vite\" \"npm run build:electron\" \"npm run start:electron\"",
"electron:win": "powershell -File ./start-electron.ps1",
"electron:build": "tsc -p tsconfig.electron.json && vite build && electron-builder",
"electron:preview": "vite preview --config vite.config.ts",
"start": "powershell -File ./start-electron.ps1",
"electron:run": "npm run build && npx electron .",
"electron:start": "powershell -File ./start-electron.ps1"
},
"dependencies": {
"@google/generative-ai": "^0.24.0",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-slot": "^1.1.2",
"@tailwindcss/vite": "^4.0.15",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron-store": "^8.1.0",
"lucide-react": "^0.483.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.15",
"tw-animate-css": "^1.2.4"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/node": "^22.13.11",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^30.0.0",
"electron-builder": "^24.13.0",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.0",
"vite-plugin-electron": "^0.28.0",
"vite-plugin-electron-renderer": "^0.14.5",
"wait-on": "^7.2.0"
}
}