Files
clawport-ui/package.json
T
JohnRiceMLandClaude Opus 4.6 40db84d69b fix: memory page shows indexed status correctly (#24)
Add --json flag to `openclaw memory status --deep` call and handle the
new array-of-agents response format. Previously the missing --json flag
caused JSON.parse to fail, always falling back to indexed: false. Now
correctly derives indexed state from status.files > 0 && !dirty across
all agents, sums chunks for totalEntries, and reads provider/vector
from the primary agent. Bumps to v0.8.9.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-24 10:57:13 -05:00

79 lines
1.8 KiB
JSON

{
"name": "clawport-ui",
"version": "0.8.9",
"description": "Open-source dashboard for managing, monitoring, and chatting with your OpenClaw AI agents.",
"homepage": "https://clawport.dev",
"repository": {
"type": "git",
"url": "https://github.com/JohnRiceML/clawport-ui.git"
},
"bugs": {
"url": "https://github.com/JohnRiceML/clawport-ui/issues"
},
"keywords": [
"openclaw",
"ai-agents",
"dashboard",
"clawport",
"agent-management",
"next.js"
],
"license": "MIT",
"engines": {
"node": ">=22"
},
"files": [
"app/",
"bin/",
"clawport-logo.png",
"components/",
"docs/",
"lib/",
"public/",
"scripts/",
"next.config.mjs",
"postcss.config.mjs",
"tsconfig.json",
".env.example"
],
"bin": {
"clawport": "./bin/clawport.mjs"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest run",
"setup": "node scripts/setup.mjs",
"prepublishOnly": "npx tsc --noEmit && vitest run"
},
"dependencies": {
"@dagrejs/dagre": "^2.0.4",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@xyflow/react": "^12.10.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.575.0",
"next": "16.1.6",
"openai": "^6.25.0",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@vitejs/plugin-react": "^5.1.4",
"jsdom": "^28.1.0",
"shadcn": "^3.8.5",
"vitest": "^4.0.18"
}
}