mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 18:01:22 +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!
51 lines
1.6 KiB
JSON
51 lines
1.6 KiB
JSON
{
|
|
"name": "@mariozechner/pi-web-ui",
|
|
"version": "0.11.2",
|
|
"description": "Reusable web UI components for AI chat interfaces powered by @mariozechner/pi-ai",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./app.css": "./dist/app.css"
|
|
},
|
|
"scripts": {
|
|
"clean": "rm -rf dist",
|
|
"build": "tsc -p tsconfig.build.json && tailwindcss -i ./src/app.css -o ./dist/app.css --minify",
|
|
"dev": "concurrently --names \"build,example\" --prefix-colors \"cyan,green\" \"tsc -p tsconfig.build.json --watch --preserveWatchOutput\" \"tailwindcss -i ./src/app.css -o ./dist/app.css --watch\" \"npm run dev --prefix example\"",
|
|
"dev:tsc": "concurrently --names \"build\" --prefix-colors \"cyan\" \"tsc -p tsconfig.build.json --watch --preserveWatchOutput\" \"tailwindcss -i ./src/app.css -o ./dist/app.css --watch\"",
|
|
"check": "tsc --noEmit && cd example && tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@lmstudio/sdk": "^1.5.0",
|
|
"@mariozechner/pi-ai": "^0.11.2",
|
|
"@mariozechner/pi-tui": "^0.11.2",
|
|
"docx-preview": "^0.3.7",
|
|
"jszip": "^3.10.1",
|
|
"lucide": "^0.544.0",
|
|
"ollama": "^0.6.0",
|
|
"pdfjs-dist": "5.4.394",
|
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
|
|
},
|
|
"peerDependencies": {
|
|
"@mariozechner/mini-lit": "^0.2.0",
|
|
"lit": "^3.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@mariozechner/mini-lit": "^0.2.0",
|
|
"@tailwindcss/cli": "^4.0.0-beta.14",
|
|
"concurrently": "^9.2.1",
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"keywords": [
|
|
"ai",
|
|
"chat",
|
|
"ui",
|
|
"components",
|
|
"llm",
|
|
"web-components",
|
|
"mini-lit"
|
|
],
|
|
"author": "Mario Zechner",
|
|
"license": "MIT"
|
|
}
|