UNPKG

@xmcl/client

Version:

Minecraft socket pipeline utilities. Support Minecraft lan server discovery.

49 lines 1.48 kB
{ "name": "@xmcl/client", "version": "3.0.1", "main": "./dist/index.js", "description": "Minecraft socket pipeline utilities. Support Minecraft lan server discovery.", "engines": { "node": ">=16" }, "publishConfig": { "access": "public" }, "dependencies": { "@xmcl/bytebuffer": "0.1.1", "@xmcl/nbt": "3.0.1", "@xmcl/text-component": "2.1.2" }, "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" ], "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/bytebuffer": "^5.0.44", "@types/node": "~18.15.11", "esbuild": "^0.17.14", "eslint": "^8.37.0", "tslib": "^2.5.0", "typescript": "^5.0.3", "@xmcl/eslint-config": "0.0.1" }, "scripts": { "build:type": "tsc", "build:cjs": "esbuild --target=node16 --platform=node --external:long --external:@xmcl/* --sourcemap --format=cjs --bundle --outfile=dist/index.js index.ts", "build:esm": "esbuild --target=node16 --platform=node --external:long --external:@xmcl/* --sourcemap --format=esm --bundle --outfile=dist/index.mjs index.ts" }, "module": "./dist/index.mjs" }