-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.49 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
{
"name": "minecraft-java-core",
"version": "3.11.3",
"types": "./build/Index.d.ts",
"exports": {
".": {
"import": "./build/Index.js",
"require": "./build/Index.js"
}
},
"description": "A library starting minecraft game NW.js and Electron.js",
"scripts": {
"dev": "rimraf ./build && tsc -w",
"build": "rimraf ./build && tsc",
"prepublishOnly": "npm i && npm run build"
},
"files": [
"assets/**",
"build/**",
"LICENSE",
"README.md"
],
"keywords": [
"Minecraft",
"Launcher",
"Node-Minecraft",
"Game",
"Minecraft-Launcher",
"Forge",
"Minecraft-Forge"
],
"author": "Luuxis",
"license": "CCANC",
"dependencies": {
"7zip-bin": "^5.2.0",
"adm-zip": "^0.5.16",
"node-7z": "^3.0.0",
"node-fetch": "^2.7.0",
"prompt": "^1.3.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/node": "^22.10.2",
"@types/node-7z": "^2.1.10",
"@types/node-fetch": "^2.6.12",
"rimraf": "^6.0.1",
"typescript": "^5.7.2"
},
"bugs": {
"url": "https://github.com/luuxis/minecraft-java-core/issues"
},
"homepage": "https://github.com/luuxis/minecraft-java-core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/luuxis/minecraft-java-core.git"
}
}