-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 864 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 864 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
{
"name": "@example/react-electron",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "bunx vite",
"_build": "tsc && bunx vite build && bunx electron-builder",
"clean": "bun ../../scripts/rm.mts node_modules .turbo dist-electron",
"preview": "vite preview"
},
"dependencies": {
"@evolu/common": "workspace:*",
"@evolu/react": "workspace:*",
"@evolu/react-web": "workspace:*",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@types/react": "~19.2.14",
"@types/react-dom": "~19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"electron": "40.7.0",
"electron-builder": "^26.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6"
},
"main": "dist-electron/main.js"
}