2012-12-31 20:33:35 -05:00
|
|
|
{
|
|
|
|
"name": "minecraft-protocol",
|
2022-06-06 11:53:14 -04:00
|
|
|
"version": "1.35.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": {
|
2021-06-16 17:58:20 -04:00
|
|
|
"test": "mocha --recursive --reporter spec --exit --exclude \"non-par-test.js\"",
|
|
|
|
"test-non-par": "mocha --recursive --reporter spec --exit \"test/non-par-test.js\"",
|
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": {
|
2022-01-28 10:02:48 -05:00
|
|
|
"node": ">=14"
|
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": {
|
2022-07-19 16:47:36 -04:00
|
|
|
"@types/node": "^18.0.6",
|
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",
|
2021-04-11 17:15:15 -04:00
|
|
|
"minecraft-packets": "^1.1.5",
|
2021-11-03 19:23:56 -04:00
|
|
|
"minecraft-protocol": "file:.",
|
2018-10-16 16:23:16 -04:00
|
|
|
"minecraft-wrap": "^1.2.3",
|
2022-05-10 13:02:58 -04:00
|
|
|
"mocha": "^10.0.0",
|
2015-09-09 18:38:03 -04:00
|
|
|
"power-assert": "^1.0.0",
|
2022-05-10 13:15:26 -04:00
|
|
|
"standard": "^17.0.0"
|
2013-01-01 21:51:46 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-04-12 12:35:48 -04:00
|
|
|
"@types/readable-stream": "^2.3.13",
|
2020-08-02 17:38:53 -04:00
|
|
|
"aes-js": "^3.1.2",
|
2016-03-19 20:34:25 -04:00
|
|
|
"buffer-equal": "^1.0.0",
|
2021-11-03 19:23:56 -04:00
|
|
|
"debug": "^4.3.2",
|
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",
|
2022-07-25 16:14:26 -04:00
|
|
|
|
|
|
|
"minecraft-data": "^3.8.0",
|
2021-11-03 19:23:56 -04:00
|
|
|
"minecraft-folder-path": "^1.2.0",
|
2020-12-11 15:30:48 -05:00
|
|
|
"node-fetch": "^2.6.1",
|
2017-07-20 11:39:54 -04:00
|
|
|
"node-rsa": "^0.4.2",
|
2021-11-03 19:23:56 -04:00
|
|
|
"prismarine-auth": "^1.1.0",
|
2021-11-06 22:52:20 -04:00
|
|
|
"prismarine-nbt": "^2.0.0",
|
2020-06-21 12:57:39 -04:00
|
|
|
"protodef": "^1.8.0",
|
2022-07-19 16:47:52 -04:00
|
|
|
"readable-stream": "^4.1.0",
|
2020-12-06 12:48:52 -05:00
|
|
|
"uuid-1345": "^1.0.1",
|
|
|
|
"yggdrasil": "^1.4.0"
|
2013-01-01 21:51:46 -05:00
|
|
|
}
|
2012-12-31 20:33:35 -05:00
|
|
|
}
|