-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.59 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "panthor",
"version": "2.1.0",
"main": "dist-electron/main/index.js",
"description": "Panthor Launcher",
"author": "Kaibu",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/PanthorDE/launcher.git"
},
"bugs": {
"url": "https://github.com/PanthorDE/launcher/issues"
},
"keywords": [
"electron",
"rollup",
"vite",
"vue3",
"vue"
],
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344/"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build && electron-builder build -p never",
"build_portable": "vue-tsc --noEmit && vite build && electron-builder build -p never --win portable",
"publish": "vue-tsc --noEmit && vite build && electron-builder build -p always",
"prebuild": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"format": "prettier --write src/ electron/"
},
"build": {
"appId": "panthor.de",
"productName": "Panthor Launcher",
"copyright": "Copyright ©2024 Panthor",
"directories": {
"output": "build-dist/${version}"
},
"portable": {
"requestExecutionLevel": "user"
},
"win": {
"target": "nsis",
"publish": [
"github"
],
"artifactName": "${productName}_${version}.${ext}"
},
"nsis": {
"installerLanguages": [
"de_DE"
],
"deleteAppDataOnUninstall": true
},
"files": [
"!build-dist/${/*}"
]
},
"devDependencies": {
"@babel/types": "^7.24.0",
"@types/node": "^20.9.0",
"@types/webfontloader": "^1.6.38",
"@vitejs/plugin-vue": "^4.6.2",
"electron": "^32.0.1",
"electron-builder": "^24.13.3",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite": "^4.5.2",
"vite-plugin-electron": "^0.28.6",
"vite-plugin-electron-renderer": "^0.14.5",
"vite-plugin-vuetify": "^1.0.2",
"vue-tsc": "^2.0.14"
},
"dependencies": {
"@mdi/font": "7.4.47",
"@types/chart.js": "^2.9.41",
"@types/ping": "^0.4.4",
"@types/unzipper": "^0.10.9",
"@types/winreg": "^1.2.36",
"@vueuse/core": "^11.0.3",
"axios": "^1.6.8",
"chart.js": "^4.4.2",
"check-disk-space": "^3.4.0",
"electron-store": "^8.2.0",
"electron-updater": "^6.1.8",
"humanize-duration-ts": "^2.1.1",
"ping": "^0.4.4",
"roboto-fontface": "*",
"unzipper": "^0.12.3",
"vue": "^3.4.27",
"vue-chartjs": "^5.3.1",
"vue-router": "^4.4.5",
"vuetify": "^3.6.8",
"webfontloader": "^1.6.28",
"winreg": "^1.2.5",
"xml-js": "^1.6.11"
}
}