-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.93 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
{
"name": "starlightlauncher",
"version": "1.0.2",
"main": "dist-electron/main/index.js",
"description": "[Launcher] Minecraft launcher with custom asset server",
"author": "VanderCat",
"license": "MIT",
"email": "[email protected]",
"private": true,
"scripts": {
"dev": "vite",
"prebuild": "vue-tsc --noEmit && vite build",
"build": "yarn prebuild && electron-builder",
"build:win32": "yarn prebuild && electron-builder -w",
"build:linux": "yarn prebuild && electron-builder -l"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/luxon": "^3.1.0",
"@types/uuid": "^8.3.4",
"@vitejs/plugin-vue": "^3.1.2",
"@vue/devtools": "^6.0.0-beta.21",
"electron": "^21.1.0",
"electron-builder": "^23.3.3",
"sass": "^1.56.1",
"typescript": "^4.8.4",
"vite": "^3.2.2",
"vite-electron-plugin": "^0.5.0",
"vite-plugin-electron-renderer": "^0.11.1",
"vite-plugin-top-level-await": "^1.2.2",
"vite-plugin-vue-devtools": "^7.0.20",
"vue": "^3.2.40",
"vue-tsc": "^1.0.9"
},
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344"
}
},
"keywords": [
"electron",
"rollup",
"vite",
"vue3",
"vue",
"minecraft",
"minecraft-launcher"
],
"dependencies": {
"@electron/remote": "^2.0.8",
"@fontsource/inter": "^4.5.14",
"@fontsource/roboto-mono": "^4.5.8",
"@mdi/font": "^7.0.96",
"@types/vue-virtual-scroller": "npm:@earltp/vue-virtual-scroller",
"axios": "^1.1.3",
"fs-extra": "^10.1.0",
"lodash": "^4.17.21",
"luxon": "^3.1.0",
"markdown-it": "^13.0.1",
"markdown-it-link-attributes": "^4.0.1",
"pinia": "^2.0.24",
"uuid": "^9.0.0",
"vite-plugin-vuetify": "^1.0.0",
"vue-i18n": "9",
"vue-router": "4",
"vue-virtual-scroller": "^2.0.0-beta.3",
"vuetify": "^3.0.1",
"yaml": "^2.1.3"
}
}