-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "mt-vite-react-demo",
"version": "0.0.1",
"description": "mt-vite react demo",
"license": "MIT",
"author": {
"name": "mzwing",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:mt-vite/mt-vite-react-demo.git"
},
"main": "./electron/main.cjs",
"scripts": {
"dev:web": "vite --port 5173",
"dev:electron": "concurrently -k \"vite --port 5173\" \"wait-on tcp:5173 && cross-env NODE_ENV=development electron .\"",
"preview:web": "vite preview",
"preview:electron": "vite build && electron .",
"build:web": "vite build",
"build:win": "vite build && electron-builder build --win --publish=never",
"build:linux": "vite build && electron-builder build --linux --publish=never",
"build:mac": "vite build && electron-builder build --mac --publish=never",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:html": "htmlhint \"**/*.html\""
},
"maintainers": [
"mzwing",
"so1ve",
"chihuo2104"
],
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.0.0",
"concurrently": "^7.3.0",
"cross-env": "^7.0.3",
"electron": "^19.0.9",
"electron-builder": "^23.1.0",
"eslint": "^8.20.0",
"eslint-plugin-jsonc": "^2.3.1",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-yml": "^1.0.0",
"htmlhint": "^1.1.4",
"vite": "^3.0.0",
"wait-on": "^6.0.1"
},
"bugs": {
"url": "https://github.com/mt-vite/mt-vite-react-demo/issues"
}
}