2012-12-31 20:33:35 -05:00
|
|
|
{
|
|
|
|
"name": "minecraft-protocol",
|
2024-10-26 17:54:20 -04:00
|
|
|
"version": "1.50.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": {
|
2023-12-27 18:12:23 -05:00
|
|
|
"test": "npm run mochaTest",
|
|
|
|
"mochaTest": "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": {
|
2023-06-27 07:20:01 -04: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": {
|
2023-05-20 07:40:24 -04:00
|
|
|
"@types/node": "^20.2.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",
|
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",
|
2024-10-12 17:55:36 -04:00
|
|
|
"standard": "^17.0.0",
|
|
|
|
"prismarine-registry": "^1.8.0"
|
2013-01-01 21:51:46 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-07-29 04:27:33 -04:00
|
|
|
"@types/readable-stream": "^4.0.0",
|
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",
|
2024-10-26 17:52:46 -04:00
|
|
|
"minecraft-data": "^3.78.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",
|
2023-01-14 14:33:04 -05:00
|
|
|
"prismarine-auth": "^2.2.0",
|
2024-02-25 19:14:49 -05:00
|
|
|
"prismarine-chat": "^1.10.0",
|
2023-12-27 18:48:10 -05:00
|
|
|
"prismarine-nbt": "^2.5.0",
|
2023-01-15 12:30:33 -05:00
|
|
|
"prismarine-realms": "^1.2.0",
|
2024-10-12 17:55:36 -04:00
|
|
|
"protodef": "^1.17.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
|
|
|
}
|