mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 20:03:05 +00:00
Since version 0.9.0, RPC mode (--mode rpc) was not saving messages to session files. The agent.subscribe() call with session management logic was only present in the TUI renderer after it was refactored. RPC mode now properly saves sessions just like interactive mode. Added test for RPC mode session management to prevent regression. Fixes #83 Thanks @kiliman for reporting this issue!
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "@mariozechner/pi-tui",
|
|
"version": "0.11.2",
|
|
"description": "Terminal User Interface library with differential rendering for efficient text-based applications",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"clean": "rm -rf dist",
|
|
"build": "tsgo -p tsconfig.build.json",
|
|
"dev": "tsgo -p tsconfig.build.json --watch --preserveWatchOutput",
|
|
"check": "biome check --write . && tsgo --noEmit",
|
|
"test": "node --test --import tsx test/*.test.ts",
|
|
"prepublishOnly": "npm run clean && npm run build"
|
|
},
|
|
"files": [
|
|
"dist/**/*",
|
|
"README.md"
|
|
],
|
|
"keywords": [
|
|
"tui",
|
|
"terminal",
|
|
"ui",
|
|
"text-editor",
|
|
"differential-rendering",
|
|
"typescript",
|
|
"cli"
|
|
],
|
|
"author": "Mario Zechner",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/badlogic/pi-mono.git",
|
|
"directory": "packages/tui"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"types": "./dist/index.d.ts",
|
|
"dependencies": {
|
|
"@types/mime-types": "^2.1.4",
|
|
"chalk": "^5.5.0",
|
|
"marked": "^15.0.12",
|
|
"mime-types": "^3.0.1",
|
|
"string-width": "^8.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@xterm/headless": "^5.5.0",
|
|
"@xterm/xterm": "^5.5.0"
|
|
}
|
|
}
|