generated from electron-vite/electron-vite-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 KB
/
package.json
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
{
"name": "vite-react-electron",
"productName": "Electron",
"private": true,
"version": "1.0.0",
"description": "Vite React Electron boilerplate.",
"author": "草鞋没号 <[email protected]>",
"license": "MIT",
"main": "dist/main/index.cjs",
"scripts": {
"dev": "node scripts/watch.mjs",
"build": "tsc --noEmit -p packages/renderer/tsconfig.json && node scripts/build.mjs && electron-builder"
},
"engines": {
"node": ">=14.17.0"
},
"dependencies": {
"electron-store": "^8.0.1"
},
"devDependencies": {
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@vitejs/plugin-react": "^1.3.2",
"electron": "^18.2.4",
"electron-builder": "^23.0.3",
"execa": "^6.1.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"sass": "^1.51.0",
"typescript": "^4.6.4",
"vite": "^2.9.9",
"vite-plugin-esmodule": "^1.2.5",
"vite-plugin-optimizer": "^1.3.3",
"vite-plugin-resolve": "^2.1.1"
},
"env": {
"VITE_DEV_SERVER_HOST": "127.0.0.1",
"VITE_DEV_SERVER_PORT": 7777
}
}