New design v0.2

New design and framework
This commit is contained in:
Oussama Douhou
2026-01-13 10:49:47 +01:00
parent 21161c6554
commit 8977a6fdee
29 changed files with 2434 additions and 58 deletions

View File

@@ -4,18 +4,32 @@
"description": "Self-service portal for deploying personal OpenCode AI stacks",
"type": "module",
"scripts": {
"dev": "bun run --hot src/index.ts",
"dev": "concurrently \"bun run dev:api\" \"bun run dev:client\"",
"dev:api": "bun run --hot src/index.ts",
"dev:client": "cd client && vite",
"start": "bun run src/index.ts",
"mcp": "bun run src/mcp-server.ts",
"build": "bun build src/index.ts --outdir=dist --target=bun",
"typecheck": "tsc --noEmit"
"build": "bun run build:client && bun run build:api",
"build:client": "cd client && vite build",
"build:api": "bun build src/index.ts --outdir=dist --target=bun",
"typecheck": "tsc --noEmit && tsc --noEmit -p client/tsconfig.json"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"hono": "^4.11.3"
"@tailwindcss/vite": "^4.1.18",
"@vitejs/plugin-react": "^5.1.2",
"hono": "^4.11.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tailwindcss": "^4.1.18",
"vite": "^7.3.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.182.0",
"concurrently": "^9.2.1",
"typescript": "^5.0.0"
},
"author": "Oussama Douhou",