{
  "name": "datanet-serial-bridge-node",
  "version": "0.1.0",
  "description": "Reads JSON lines from a USB serial port and publishes them to DataNet",
  "type": "module",
  "main": "bridge.mjs",
  "scripts": {
    "start": "node bridge.mjs",
    "list-ports": "node -e \"import('serialport').then(m => m.SerialPort.list()).then(p => p.forEach(x => console.log(x.path, x.manufacturer || '')))\""
  },
  "dependencies": {
    "serialport": "^12.0.0"
  },
  "engines": {
    "node": ">=18"
  }
}
