forked from justinevedovato/Helium-Flick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.06 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "helium-flick",
"version": "1.1.1",
"description": "Helium hotspot overview",
"author": "JustineV",
"main": "electron/electron.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"electron": "wait-on tcp:3000 && cross-env IS_DEV=true electron .",
"electron:pack": "electron-builder --dir",
"electron:dev": "concurrently -k \"cross-env BROWSER=none npm run dev\" \"npm run electron\"",
"electron:builder": "electron-builder",
"build:for:electron": "cross-env ELECTRON=true vite build",
"app:build": "rimraf dist_electron && npm run build:for:electron && npm run electron:builder"
},
"dependencies": {
"angry-purple-tiger": "^1.0.5",
"auto-launch": "^5.0.5",
"axios": "^0.21.1",
"chart.js": "^3.5.0",
"got": "^11.8.2",
"pretty-ms": "^7.0.1",
"qrcode-vue3": "^1.4.17",
"vue": "^3.2.4",
"vue-chart-3": "^0.5.6",
"vue-router": "^4.0.10",
"vue3-perfect-scrollbar": "^1.5.5",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.3.0",
"@vue/compiler-sfc": "^3.1.5",
"autoprefixer": "^10.2.6",
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"electron": "^13.5.1",
"electron-builder": "^22.11.7",
"postcss": "^8.3.5",
"postcss-nested": "^5.0.6",
"rimraf": "^3.0.2",
"tailwindcss": "^2.2.4",
"vite": "^2.4.4",
"vite-plugin-pages": "^0.14.3",
"wait-on": "^6.0.0"
},
"build": {
"appId": "com.helium-flick.app",
"productName": "HeliumFlick",
"copyright": "Copyright © 2021 Justine V",
"mac": {
"icon": "./public/512x512.png",
"category": "public.app-category.utilities",
"extendInfo": {
"LSUIElement": true
}
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"win": {
"icon": "./public/logo2.png"
},
"files": [
"dist/**/*",
"electron/**/*",
"public/**/*"
],
"directories": {
"buildResources": "public",
"output": "dist_electron"
}
}
}