- Aperant: Vite build, shims, deploy script, dist assets - Cockpit components: Card, Badge, Modal, Input, DataTable, StatusDot - EDA worker for browser-side PCB/schematic processing - Next.js project config, CI pipeline, layout Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "aperant-web",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Aperant multi-agent UI — web-only build (no Electron)",
|
|
"scripts": {
|
|
"dev": "concurrently -n ui,api -c cyan,green \"npm run dev:ui\" \"npm run dev:server\"",
|
|
"dev:ui": "vite",
|
|
"dev:server": "tsx watch server/index.ts",
|
|
"build": "tsc -b && vite build",
|
|
"preview": "vite preview",
|
|
"start": "node server/dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"express": "^5.1.0",
|
|
"ws": "^8.18.0",
|
|
"node-pty": "^1.0.0",
|
|
"cors": "^2.8.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.0",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/ws": "^8.18.0",
|
|
"@types/node": "^22.0.0",
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"@vitejs/plugin-react": "^4.5.0",
|
|
"concurrently": "^9.1.0",
|
|
"tailwindcss": "^4.1.0",
|
|
"@tailwindcss/postcss": "^4.1.0",
|
|
"@tailwindcss/typography": "^0.5.16",
|
|
"postcss": "^8.5.0",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.8.0",
|
|
"vite": "^7.3.0",
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.1.0"
|
|
}
|
|
}
|