-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "amethyst-launcher",
"version": "1.0.3",
"description": "Amethyst — Minecraft Launcher",
"main": "main.js",
"scripts": {
"start": "electron .",
"prebuild:win": "node scripts/make-ico.js",
"build:win": "npm run prebuild:win && electron-builder --win",
"build:linux": "electron-builder --linux",
"build:mac": "electron-builder --mac"
},
"dependencies": {
"minecraft-launcher-core": "^3.5.2",
"prismarine-nbt": "^2.4.0",
"msmc": "^3.1.5"
},
"devDependencies": {
"electron": "^29.0.0",
"electron-builder": "^24.0.0",
"png-to-ico": "^2.1.8"
},
"build": {
"appId": "pw.godbox.amethyst",
"productName": "Amethyst Launcher",
"directories": { "output": "dist" },
"win": {
"target": [{ "target": "nsis", "arch": ["x64"] }],
"icon": "assets/icon.ico",
"artifactName": "Amethyst-Setup-${version}.${ext}"
},
"linux": {
"target": [{ "target": "tar.gz", "arch": ["x64"] }],
"category": "Game",
"icon": "assets/icon.png",
"maintainer": "GodBox"
},
"mac": {
"target": [{ "target": "zip", "arch": ["x64", "arm64"] }],
"category": "public.app-category.games",
"icon": "assets/icon.png"
}
},
"author": "GodBox",
"license": "MIT"
}