- Express + TypeScript backend with IRC connection manager - React + Vite frontend with mIRC-inspired theme - Drizzle ORM + PostgreSQL schema (users, connections, channels, messages) - Redis pub/sub for real-time WebSocket delivery across replicas - IRC color code parser (16 + 99 extended palette) - Kubernetes manifests for homecloud deployment - Multi-stage Dockerfile with non-root user - docker-compose for local development
19 lines
572 B
JSON
19 lines
572 B
JSON
{
|
|
"name": "mirccloud",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Self-hosted always-connected web IRC client with mIRC aesthetics",
|
|
"workspaces": [
|
|
"server",
|
|
"client"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm run dev --workspace=server",
|
|
"dev:client": "npm run dev --workspace=client",
|
|
"build": "npm run build --workspace=client && npm run build --workspace=server",
|
|
"start": "npm run start --workspace=server",
|
|
"db:generate": "npm run db:generate --workspace=server",
|
|
"db:migrate": "npm run db:migrate --workspace=server"
|
|
}
|
|
}
|