Files
rom-control/package.json
Paskooter 8c92e1c963 Fix Track.lookAt crash and fetchBuffer hang; bump to 2.0.1
- Track.lookAt: was calling client.user.lookAtEntity (undefined), now
  correctly routes to client.behavior.lookAtEntity — fixes unhandled
  promise rejections on every face-detection event
- connection: httpGet/httpGetStream had no socket timeout; added 15 s
  req.setTimeout so fetchBuffer/pipe reject instead of hanging forever
- connection: _txSend silently dropped commands when session not yet
  ready and returned a dead txId, causing callers to hang for the full
  timeout; now throws immediately with code NOT_READY

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-25 12:45:48 -04:00

41 lines
797 B
JSON

{
"name": "rom-control",
"version": "2.0.1",
"description": "Discord.js-style OOP client for the Jibo ROM WebSocket API",
"main": "./index.js",
"exports": {
"require": "./index.js",
"import": "./index.mjs",
"default": "./index.js"
},
"files": [
"src/",
"index.js",
"index.mjs",
"API.md"
],
"keywords": [
"jibo",
"rom",
"robot",
"websocket",
"sdk"
],
"author": "Paskooter",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Paskooter/rom-control.git"
},
"homepage": "https://github.com/Paskooter/rom-control#readme",
"bugs": {
"url": "https://github.com/Paskooter/rom-control/issues"
},
"dependencies": {
"ws": "^8.14.2"
},
"engines": {
"node": ">=16"
}
}