node-minecraft-protocol/package.json
Idan Horowitz 54380a3cb7
Pass through http agent option to yggdrasil for proxy support (#676)
* initialize yggdrasil with agent option if it exists

* standardjs

* move require statements to the top

* add agent option to docs and ts type information
also removed useless typescript import and moved class fields from wrong class to the correct one

* update proxy examples and add http agents for proxying yggdrasil

* update to agent supporting yggdrasil version
2020-02-11 12:31:24 +01:00

58 lines
1.4 KiB
JSON

{
"name": "minecraft-protocol",
"version": "1.10.0",
"description": "Parse and serialize minecraft packets, plus authentication and encryption.",
"main": "src/index.js",
"types": "src/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/PrismarineJS/node-minecraft-protocol.git"
},
"scripts": {
"prepublish": "require-self",
"test": "mocha --recursive --reporter spec",
"lint": "standard",
"fix": "standard --fix",
"pretest": "npm run lint"
},
"keywords": [
"minecraft",
"protocol",
"parse",
"serialize",
"packet",
"authentication",
"encrypton",
"bot"
],
"author": "Andrew Kelley",
"license": "BSD-3-Clause",
"engines": {
"node": ">=6"
},
"browser": "src/browser.js",
"devDependencies": {
"@types/node": "^13.1.0",
"espower-loader": "^1.0.0",
"intelli-espower-loader": "^1.0.0",
"minecraft-wrap": "^1.2.3",
"mocha": "^7.0.1",
"power-assert": "^1.0.0",
"require-self": "^0.2.1",
"standard": "^14.0.0"
},
"dependencies": {
"yggdrasil": "^1.3.0",
"buffer-equal": "^1.0.0",
"debug": "^4.1.0",
"endian-toggle": "^0.0.0",
"lodash.get": "^4.1.2",
"lodash.merge": "^4.3.0",
"minecraft-data": "^2.41.0",
"node-rsa": "^0.4.2",
"prismarine-nbt": "^1.2.1",
"protodef": "^1.6.7",
"readable-stream": "^3.0.6",
"uuid-1345": "^0.99.6"
}
}