mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 23:01:30 +00:00
- Remove old TUI implementation and components (LoadingAnimation, MarkdownComponent, TextComponent, TextEditor, WhitespaceComponent) - Rename components-new to components with new API (Loader, Markdown, Text, Editor, Spacer) - Move Text and Input components to separate files in src/components/ - Add render caching to Text component (similar to Markdown) - Add proper ANSI code handling in Text component using stripVTControlCharacters - Update coding-agent to use new TUI API (requires ProcessTerminal, uses custom Editor subclass for key handling) - Remove old test files, keep only chat-simple.ts and virtual-terminal.ts - Update README.md with new minimal API documentation - Switch from tsc to tsgo for type checking - Update package dependencies across monorepo
52 lines
1.6 KiB
JSON
52 lines
1.6 KiB
JSON
{
|
|
"name": "@mariozechner/pi-web-ui",
|
|
"version": "0.5.48",
|
|
"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": "tsgo -p tsconfig.build.json && tailwindcss -i ./src/app.css -o ./dist/app.css --minify",
|
|
"dev": "concurrently --names \"build,example\" --prefix-colors \"cyan,green\" \"tsgo -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\" \"tsgo -p tsconfig.build.json --watch --preserveWatchOutput\" \"tailwindcss -i ./src/app.css -o ./dist/app.css --watch\"",
|
|
"typecheck": "tsgo --noEmit && cd example && tsgo --noEmit",
|
|
"check": "npm run typecheck"
|
|
},
|
|
"dependencies": {
|
|
"@lmstudio/sdk": "^1.5.0",
|
|
"@mariozechner/pi-ai": "^0.5.43",
|
|
"@mariozechner/pi-tui": "^0.5.48",
|
|
"docx-preview": "^0.3.7",
|
|
"jszip": "^3.10.1",
|
|
"lit": "^3.3.1",
|
|
"lucide": "^0.544.0",
|
|
"ollama": "^0.6.0",
|
|
"pdfjs-dist": "^5.4.296",
|
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
|
|
},
|
|
"peerDependencies": {
|
|
"@mariozechner/mini-lit": "^0.1.10"
|
|
},
|
|
"devDependencies": {
|
|
"@mariozechner/mini-lit": "^0.1.10",
|
|
"@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"
|
|
}
|