-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
executable file
·57 lines (57 loc) · 1.45 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
{
"name": "minecraft-java-core",
"version": "4.2.5",
"types": "./build/Index.d.ts",
"exports": {
".": {
"import": "./build/esm/Index.js",
"require": "./build/Index.js",
"types": "./build/Index.d.ts"
}
},
"description": "A library starting minecraft game NW.js and Electron.js",
"scripts": {
"dev": "rimraf ./build && tsc -w",
"build": "rimraf ./build && tsc && tsc -p tsconfig.esm.json",
"prepublishOnly": "npm i && npm run build"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"assets/**",
"build/**",
"LICENSE",
"README.md"
],
"keywords": [
"Minecraft",
"Launcher",
"Node-Minecraft",
"Game",
"Minecraft-Launcher",
"Forge",
"Minecraft-Forge"
],
"author": "Luuxis",
"license": "CCANC",
"dependencies": {
"prompt": "^1.3.0",
"semver": "^7.7.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/semver": "^7.7.0",
"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"
}
}