-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.92 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.92 KB
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
{
"name": "minecraft",
"version": "1.0.0",
"description": "My Minecraft Mod Launcher/Manager",
"license": "ISC",
"author": "",
"type": "module",
"main": "ui_index.cjs",
"scripts": {
"start": "electron .",
"test": "node index.js --ui",
"build": "electron-builder",
"build:win": "electron-builder --win",
"build:mac": "electron-builder --mac",
"build:linux": "electron-builder --linux",
"download": "node index.js --ui --skip-run"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"adm-zip": "^0.5.16",
"argparse": "^2.0.1",
"axios": "^1.9.0",
"bootstrap": "^5.3.6",
"cli-progress": "^3.12.0",
"express": "^5.1.0",
"node-fetch": "^3.3.2",
"tar": "^7.4.3",
"uuid": "^11.1.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.1.3",
"@vitest/ui": "^3.1.3",
"electron": "^36.1.0",
"electron-builder": "^26.0.12",
"vitest": "^3.1.3"
},
"bin": {
"minecraft": "electron ui_index.cjs"
},
"build": {
"appId": "com.stoppedwumm.minecraftlauncher",
"productName": "Minecraft Launcher",
"directories": {
"output": "dist",
"buildResources": "build"
},
"files": [
"**/*",
"!dist",
"!build",
"!{.gitignore,.gitattributes,.editorconfig,.eslintrc.js,README.md,CHANGELOG.md,yarn.lock,pnpm-lock.yaml}",
"!tsconfig.json",
"!.vscode/**/*"
],
"win": {
"target": [
"nsis",
"portable",
"zip"
]
},
"mac": {
"category": "public.app-category.games",
"target": [
"dmg",
"pkg"
]
},
"linux": {
"target": [
"AppImage",
"deb",
"rpm"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"uninstallDisplayName": "${productName} Uninstaller"
}
}
}