dougbot/bridge/lib/prismarine-chunk/package.json
roberts 8f616598fd Fix chat, brain stability, MariaDB reconnect, suppress warnings
- Listen on raw 'text' packet for Bedrock chat (pattern-based chat event
  doesn't fire reliably on Bedrock)
- Brain: add safety reset for stuck pending_status flag
- MariaDB: add retry-on-disconnect for all query methods
- Suppress harmless punycode deprecation warning from Node.js
- Add mineflayer-bedrock lib packages (mineflayer, prismarine-chunk,
  prismarine-registry) for movement support
- Exclude minecraft-data from git (278MB, installed via npm)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-30 12:33:17 -05:00

60 lines
1.5 KiB
JSON

{
"name": "prismarine-chunk",
"version": "1.39.0",
"description": "A class to hold chunk data for prismarine",
"main": "index.js",
"types": "./types/index.d.ts",
"scripts": {
"test": "mocha --reporter spec --exit",
"fix": "standard --fix",
"lint": "standard",
"pretest": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/PrismarineJS/prismarine-chunk.git"
},
"keywords": [
"minecraft",
"voxel",
"chunk",
"world"
],
"contributors": [
"Will Franzen <wtfranzen@gmail.com> (http://will.xyz/)",
"Romain Beaumont <romain.rom1@gmail.com>",
"Georges Oates Larsen (flynnn)",
"mhsjlw",
"hornta",
"Karang",
"Vito Gamberini <vito@gamberini.email>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/PrismarineJS/prismarine-chunk/issues"
},
"homepage": "https://github.com/PrismarineJS/prismarine-chunk",
"devDependencies": {
"@types/node": "^24.1.0",
"bedrock-protocol": "^3.47.0",
"expect": "^30.0.5",
"minecraft-bedrock-server": "^1.5.0",
"mocha": "^11.0.1",
"prismarine-chunk": "file:.",
"standard": "^17.0.0-2",
"typescript": "^5.0.4"
},
"dependencies": {
"prismarine-biome": "^1.2.0",
"prismarine-block": "^1.14.1",
"prismarine-nbt": "^2.2.1",
"prismarine-registry": "^1.1.0",
"smart-buffer": "^4.1.0",
"uint4": "^0.1.2",
"vec3": "^0.1.3",
"xxhash-wasm": "^0.4.2"
},
"engines": {
"node": ">=14"
}
}