UNPKG

minecraft-wrap

Version:

Download and wrap the vanilla minecraft server in node.js

54 lines (53 loc) 1.41 kB
{ "name": "minecraft-wrap", "version": "1.7.0", "description": "Download and wrap the vanilla minecraft server in node.js", "main": "index.js", "scripts": { "test": "mocha --reporter spec", "pretest": "npm run lint", "lint": "standard", "fix": "standard --fix", "downloadMinecraft": "./examples/exampleDownload.js", "runMinecraft": "./examples/exampleWrapClient.js", "downloadBedrockServer": "./examples/exampleBedrockDownload.js" }, "repository": { "type": "git", "url": "https://github.com/PrismarineJS/node-minecraft-wrap.git" }, "keywords": [ "minecraft", "download", "wrap", "node" ], "author": "Romain Beaumont <romain.rom1@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/PrismarineJS/node-minecraft-wrap/issues" }, "dependencies": { "adm-zip": "^0.5.5", "debug": "^4.1.1", "es6-promisify": "^5.0.0", "extract-zip": "^2.0.0", "flatmap": "0.0.3", "md5-file": "^4.0.0", "minecraft-folder-path": "^1.1.0", "mkdirp": "^0.5.1", "mz": "^2.7.0", "node-fetch": "^2.6.1", "promise-queue": "^2.2.5", "rimraf": "^3.0.2", "yggdrasil": "^1.1.1" }, "devDependencies": { "mocha": "^11.0.1", "standard": "^17.0.0" }, "bin": { "downloadMinecraft": "./examples/exampleDownload.js", "runMinecraft": "./examples/exampleWrapClient.js" } }