This repository was archived by the owner on Jul 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.42 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.42 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
{
"name": "InfiniteBlocks",
"version": "2.0.0",
"description": "InfiniteBlocks is Minecraft Launcher Build with Electron.js",
"main": "ts_output/render.js",
"author": "PreknowledgeX",
"license": "MIT",
"private": false,
"scripts": {
"start-win": "npm run buildtsc && set APP_DEV=true && electron .",
"start-linux": "APP_DEV=true && electron .",
"build": "electron-builder",
"buildtsc": "tsc && npm run lint",
"lint": "npx eslint --fix"
},
"build": {
"appId": "px.ibclientlauncher",
"mac": {
"category": "public.app-category.utilities",
"icon": "app_icns/icon.icns"
},
"win": {
"asar": true,
"target": "nsis",
"icon": "app_icns/icon.png"
},
"linux":{
"target":[
"deb",
"snap",
"AppImage"
],
"category":"Game"
}
},
"dependencies": {
"@tsconfig/node16": "^1.0.2",
"@xmcl/core": "^2.9.0",
"@xmcl/installer": "^4.2.0",
"@xmcl/user": "^2.1.7",
"adm-zip": "^0.5.9",
"checksum": "^1.0.0",
"data-store": "^4.0.3",
"discord-rpc": "^4.0.1",
"eslint": "^8.10.0",
"jquery": "^3.6.0",
"msmc": "^3.0.6",
"node-fetch": "2",
"request": "^2.88.2",
"request-progress": "^3.0.0",
"toastr": "^2.1.4",
"typescript": "^4.6.2",
"unzipper": "^0.10.11",
"uuid": "^8.3.2"
},
"devDependencies": {
"electron": "^17.0.1",
"electron-builder": "^22.14.13"
}
}