-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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
{
"name": "lol-snapshot-download",
"private": true,
"version": "0.0.1",
"main": "main.js",
"scripts": {
"start": "cross-env NODE_ENV=development electron .",
"dev": "vite",
"build:web": "tsc && vite build",
"build:electron": "cross-env NODE_ENV=production electron-builder --win --x64",
"preview": "vite preview"
},
"dependencies": {
"@zip.js/zip.js": "^2.4.9",
"antd": "^4.19.3",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@vitejs/plugin-react": "^1.0.7",
"cross-env": "^7.0.3",
"electron": "^18.0.1",
"electron-builder": "^23.0.3",
"less": "^4.1.2",
"sass": "^1.49.9",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vite-plugin-imp": "^2.1.6"
},
"build": {
"appId": "com.lol.snapshot.download",
"files": [
"main.js",
"dist/**/*"
],
"directories": {
"output": "build"
},
"win": {
"target": "dir"
}
}
}