Files
ContainerFlow/package.json
T
RGJorge 6fd4440b7a v0.1.8 — in-app update notifications
- Header indicator (pulsating dot + "NEW VERSION") when a newer release
  is published on GitHub. Replaces the version subtitle without growing
  the header.
- Modal with current → latest version, release notes preview (parsed
  from GitHub release body), copy-paste update command, link to repo
  and release notes, current star count, and "versions behind" badge.
- Auto-detects deploy mode (GHCR image vs source build) by inspecting
  the running container. Shows the matching update command, but always
  exposes both via tabs.
- Backend caches the GitHub API response for 6h (~8 calls/day per
  instance, far under the rate limit).
2026-05-17 20:24:47 +00:00

47 lines
1.2 KiB
JSON

{
"name": "containerflow",
"version": "0.1.8",
"license": "AGPL-3.0-or-later",
"author": "Jorge Gonzalez D. (RGJorge)",
"type": "module",
"scripts": {
"dev": "concurrently \"bun run dev:server -- --all\" \"bun run dev:client\"",
"dev:server": "bun --watch src/server/index.ts",
"dev:client": "vite",
"build": "vite build",
"start": "bun run src/server/index.ts --all",
"preview": "bun run build && bun run start",
"mcp": "bun src/server/mcp.ts",
"setup:mcp": "bun scripts/install-mcp.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"dockerode": "^4",
"hono": "^4",
"html-to-image": "^1.11.13",
"lucide-react": "^0.577.0",
"yaml": "^2",
"zod": "^3"
},
"devDependencies": {
"@dagrejs/dagre": "^1",
"@tailwindcss/vite": "^4",
"@types/bun": "^1.3.13",
"@types/dockerode": "^3",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4",
"@xyflow/react": "^12",
"concurrently": "^9",
"react": "^19",
"react-dom": "^19",
"tailwindcss": "^4",
"typescript": "^5",
"vite": "^6",
"vitest": "^4.1.5"
}
}