2026-03-22 09:53:08 +00:00
|
|
|
{
|
2026-05-02 04:54:20 +00:00
|
|
|
"name": "containerflow",
|
2026-05-17 20:24:47 +00:00
|
|
|
"version": "0.1.8",
|
2026-04-29 21:41:49 +00:00
|
|
|
"license": "AGPL-3.0-or-later",
|
|
|
|
|
"author": "Jorge Gonzalez D. (RGJorge)",
|
2026-03-22 09:53:08 +00:00
|
|
|
"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",
|
2026-03-22 11:05:07 +00:00
|
|
|
"preview": "bun run build && bun run start",
|
|
|
|
|
"mcp": "bun src/server/mcp.ts",
|
2026-05-07 22:09:10 +00:00
|
|
|
"setup:mcp": "bun scripts/install-mcp.ts",
|
|
|
|
|
"test": "vitest run",
|
|
|
|
|
"test:watch": "vitest",
|
|
|
|
|
"typecheck": "tsc --noEmit"
|
2026-03-22 09:53:08 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-03-22 11:05:07 +00:00
|
|
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
2026-03-22 09:53:08 +00:00
|
|
|
"dockerode": "^4",
|
|
|
|
|
"hono": "^4",
|
2026-05-16 02:08:22 +00:00
|
|
|
"html-to-image": "^1.11.13",
|
2026-03-22 09:53:08 +00:00
|
|
|
"lucide-react": "^0.577.0",
|
|
|
|
|
"yaml": "^2",
|
|
|
|
|
"zod": "^3"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-05-02 03:36:34 +00:00
|
|
|
"@dagrejs/dagre": "^1",
|
|
|
|
|
"@tailwindcss/vite": "^4",
|
2026-05-07 22:09:10 +00:00
|
|
|
"@types/bun": "^1.3.13",
|
2026-03-22 09:53:08 +00:00
|
|
|
"@types/dockerode": "^3",
|
|
|
|
|
"@types/react": "^19",
|
|
|
|
|
"@types/react-dom": "^19",
|
|
|
|
|
"@vitejs/plugin-react": "^4",
|
2026-05-02 03:36:34 +00:00
|
|
|
"@xyflow/react": "^12",
|
2026-03-22 09:53:08 +00:00
|
|
|
"concurrently": "^9",
|
|
|
|
|
"react": "^19",
|
|
|
|
|
"react-dom": "^19",
|
|
|
|
|
"tailwindcss": "^4",
|
|
|
|
|
"typescript": "^5",
|
2026-05-07 22:09:10 +00:00
|
|
|
"vite": "^6",
|
|
|
|
|
"vitest": "^4.1.5"
|
2026-03-22 09:53:08 +00:00
|
|
|
}
|
|
|
|
|
}
|