2012-12-31 20:33:35 -05:00
|
|
|
{
|
|
|
|
"name": "minecraft-protocol",
|
2020-10-25 11:19:07 -04:00
|
|
|
"version": "1.19.0",
|
2013-01-01 21:02:07 -05:00
|
|
|
"description": "Parse and serialize minecraft packets, plus authentication and encryption.",
|
2016-02-17 02:13:23 -05:00
|
|
|
"main": "src/index.js",
|
2018-09-24 16:01:16 -04:00
|
|
|
"types": "src/index.d.ts",
|
2013-01-01 21:51:46 -05:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2015-09-24 09:18:00 -04:00
|
|
|
"url": "git://github.com/PrismarineJS/node-minecraft-protocol.git"
|
2013-01-01 21:51:46 -05:00
|
|
|
},
|
2012-12-31 20:33:35 -05:00
|
|
|
"scripts": {
|
2020-05-22 16:35:51 -04:00
|
|
|
"prepare": "npm install require-self && require-self",
|
2020-05-20 06:44:11 -04:00
|
|
|
"test": "mocha --recursive --reporter spec --exit",
|
2018-05-13 16:50:16 -04:00
|
|
|
"lint": "standard",
|
2019-08-03 19:29:14 -04:00
|
|
|
"fix": "standard --fix",
|
2020-06-21 13:34:18 -04:00
|
|
|
"pretest": "npm run lint",
|
|
|
|
"prepublishOnly": "cp docs/README.md README.md"
|
2012-12-31 20:33:35 -05:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"minecraft",
|
2013-01-01 21:51:46 -05:00
|
|
|
"protocol",
|
|
|
|
"parse",
|
|
|
|
"serialize",
|
|
|
|
"packet",
|
|
|
|
"authentication",
|
|
|
|
"encrypton",
|
|
|
|
"bot"
|
2012-12-31 20:33:35 -05:00
|
|
|
],
|
|
|
|
"author": "Andrew Kelley",
|
2015-11-14 20:33:32 -05:00
|
|
|
"license": "BSD-3-Clause",
|
2013-01-01 21:51:46 -05:00
|
|
|
"engines": {
|
2017-02-26 13:59:56 -05:00
|
|
|
"node": ">=6"
|
2013-01-01 21:51:46 -05:00
|
|
|
},
|
2016-02-17 02:13:23 -05:00
|
|
|
"browser": "src/browser.js",
|
2013-01-01 21:51:46 -05:00
|
|
|
"devDependencies": {
|
2020-05-17 05:58:48 -04:00
|
|
|
"@types/node": "^14.0.1",
|
2015-11-30 07:23:38 -05:00
|
|
|
"espower-loader": "^1.0.0",
|
2015-09-09 18:38:03 -04:00
|
|
|
"intelli-espower-loader": "^1.0.0",
|
2018-10-16 16:23:16 -04:00
|
|
|
"minecraft-wrap": "^1.2.3",
|
2020-06-11 04:27:56 -04:00
|
|
|
"mocha": "^8.0.1",
|
2015-09-09 18:38:03 -04:00
|
|
|
"power-assert": "^1.0.0",
|
2020-06-21 12:57:39 -04:00
|
|
|
"require-self": "^0.2.3",
|
2020-10-24 09:44:33 -04:00
|
|
|
"standard": "^15.0.0"
|
2013-01-01 21:51:46 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-08-02 17:38:53 -04:00
|
|
|
"aes-js": "^3.1.2",
|
2020-02-11 06:31:24 -05:00
|
|
|
"yggdrasil": "^1.3.0",
|
2016-03-19 20:34:25 -04:00
|
|
|
"buffer-equal": "^1.0.0",
|
2018-10-16 16:23:16 -04:00
|
|
|
"debug": "^4.1.0",
|
2016-03-19 20:34:25 -04:00
|
|
|
"endian-toggle": "^0.0.0",
|
2016-02-23 12:42:01 -05:00
|
|
|
"lodash.get": "^4.1.2",
|
|
|
|
"lodash.merge": "^4.3.0",
|
2020-10-06 16:46:53 -04:00
|
|
|
"minecraft-data": "^2.69.0",
|
2017-07-20 11:39:54 -04:00
|
|
|
"node-rsa": "^0.4.2",
|
2020-05-20 06:39:18 -04:00
|
|
|
"prismarine-nbt": "^1.3.0",
|
2020-06-21 12:57:39 -04:00
|
|
|
"protodef": "^1.8.0",
|
2018-10-16 16:23:16 -04:00
|
|
|
"readable-stream": "^3.0.6",
|
2020-05-04 18:28:57 -04:00
|
|
|
"uuid-1345": "^1.0.1"
|
2013-01-01 21:51:46 -05:00
|
|
|
}
|
2012-12-31 20:33:35 -05:00
|
|
|
}
|