forked from Voxelum/minecraft-launcher-core-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 933 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 933 Bytes
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
{
"name": "@xmcl/core",
"version": "2.9.0",
"main": "./index.ts",
"description": "Minecraft version parsing and game launching.",
"engines": {
"node": ">=10.0"
},
"publishConfig": {
"access": "public",
"main": "./dist/index.js",
"module": "./dist/index.esm.js"
},
"dependencies": {
"@xmcl/unzip": "^2.0.0",
"uuid": "^8.3.2",
"yauzl": "^2.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Voxelum/minecraft-launcher-core-node.git"
},
"author": "cijhn@hotmail.com",
"keywords": [
"minecraft",
"typescript",
"minecraft-launcher",
"nodejs",
"electron"
],
"sideEffects": false,
"license": "MIT",
"bugs": {
"url": "https://github.com/Voxelum/minecraft-launcher-core-node/issues"
},
"homepage": "https://github.com/Voxelum/minecraft-launcher-core-node#readme",
"devDependencies": {
"@types/yauzl": "^2.9.2"
}
}