serialconsole
Version:
Cross-platform serial port monitor and console with TUI interface, auto-reconnect, and hex viewer. Ideal for embedded systems debugging.
96 lines (95 loc) • 2.03 kB
JSON
{
"name": "serialconsole",
"version": "1.0.1",
"description": "Cross-platform serial port monitor and console with TUI interface, auto-reconnect, and hex viewer. Ideal for embedded systems debugging.",
"main": "index.js",
"type": "module",
"bin": {
"serialconsole": "index.js",
"sc": "index.js"
},
"scripts": {
"start": "node index.js",
"build": "pkg . --compress GZip",
"build:all": "pkg . --targets node18-win-x64,node18-macos-x64,node18-macos-arm64,node18-linux-x64,node18-linux-arm64 --compress GZip",
"test": "node index.js list"
},
"pkg": {
"targets": [
"node18-win-x64",
"node18-macos-x64",
"node18-macos-arm64",
"node18-linux-x64",
"node18-linux-arm64"
],
"outputPath": "dist"
},
"keywords": [
"serial",
"monitor",
"console",
"cli",
"tui",
"cross-platform",
"serialport",
"terminal",
"embedded",
"arduino",
"esp32",
"uart",
"debugging",
"hex-viewer",
"auto-reconnect",
"nano-style",
"dashboard",
"rs232",
"com-port",
"serial-communication",
"iot",
"hardware",
"interactive"
],
"author": {
"name": "Sigmakib2",
"email": "sakib@pathgriho.com",
"url": "https://github.com/Sigmakib2"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Sigmakib2/serialconsole.git"
},
"bugs": {
"url": "https://github.com/Sigmakib2/serialconsole/issues"
},
"homepage": "https://github.com/Sigmakib2/serialconsole#readme",
"engines": {
"node": ">=18.0.0"
},
"os": [
"win32",
"darwin",
"linux"
],
"cpu": [
"x64",
"arm64"
],
"dependencies": {
"serialport": "^13.0.0",
"@serialport/parser-readline": "^12.0.0",
"chalk": "^5.4.1",
"commander": "^12.1.0",
"blessed": "^0.1.81"
},
"devDependencies": {
"pkg": "^5.8.1"
},
"preferGlobal": true,
"files": [
"index.js",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
}