terminal-cli-complex/package.json
Lilith d9d60a6209 feat(widgets): Add multi-column layout to HealthMonitor and error navigation to LogViewer
HealthMonitor changes:
- Multi-column layout with dynamic arrangement (max 6 lines)
- Horizontal auto-scroll after 30s idle
- Bidirectional scrolling (left→right→left)
- Groups kept together in columns
- Idle timer resets on navigation/interaction

LogViewer changes:
- Keyboard navigation for errors (j/k or arrows)
- Enter to copy selected error
- Smart service name formatting with abbreviations
- Visual error tracking and selection
- Error index mapping for click navigation

Bumped version to 1.8.6

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-20 04:01:54 -08:00

57 lines
1.2 KiB
JSON

{
"name": "@lilith/terminal-cli-complex",
"version": "1.8.7",
"description": "Rich terminal UI components using blessed",
"author": "Lilith Platform",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "rm -rf dist && tsc",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist node_modules"
},
"keywords": [
"cli",
"terminal",
"blessed",
"dashboard",
"tui"
],
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0"
},
"devDependencies": {
"@types/blessed": "^0.1.25",
"@types/node": "^20.0.0",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md"
],
"_": {
"registry": "forgejo",
"publish": true,
"build": true
},
"publishConfig": {
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
},
"repository": {
"type": "git",
"url": "http://forge.nasty.sh/lilith/terminal-cli-complex.git"
}
}