openclaw/extensions/boltbot/package.json
duy 58e556a2d7 feat(boltbot): add audit dashboard — Vite + React SPA served from gateway
Adds a dark-themed receipt audit dashboard at /boltbot/dashboard:
- Vite + React + TypeScript SPA with Tailwind CSS
- Stats summary (total actions, tier breakdown, anomaly count)
- Receipt list with tier/anomaly filtering, offset pagination, 10s polling
- Slide-out receipt detail with accordion sections (hashes, EigenDA, TEE)
- Session grouping view (receipts grouped by sessionKey)
- Gateway serves static files via registerHttpRoute with path traversal
  protection (resolve+startsWith), security headers (nosniff, DENY)
- WCAG-compliant: dialog focus management, keyboard navigation,
  aria-pressed/expanded/selected, semantic table roles, contrast AA
2026-01-29 15:12:32 -08:00

16 lines
335 B
JSON

{
"name": "@boltbot/extension",
"version": "0.1.0",
"type": "module",
"description": "Boltbot — Trustless Moltbot hosting via EigenCloud",
"moltbot": {
"extensions": ["./index.ts"]
},
"scripts": {
"build:dashboard": "cd dashboard && npm run build"
},
"dependencies": {
"better-sqlite3": "^11.0.0"
}
}