Build MVP with Pi installer and atomic updates

This commit is contained in:
2026-07-31 18:17:27 +02:00
parent e575ed2b2f
commit c52def7c37
35 changed files with 7762 additions and 1 deletions
+29
View File
@@ -0,0 +1,29 @@
{
"name": "pi-car-companion",
"private": true,
"version": "0.1.0",
"engines": {
"node": ">=22 <23"
},
"workspaces": [
"server",
"web"
],
"scripts": {
"dev": "npm run dev --workspace @pi-car/server",
"dev:web": "npm run dev --workspace @pi-car/web",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"check:scripts": "bash -n install.sh scripts/pi-car-companion-update",
"check": "npm run check:scripts && npm run lint && npm run typecheck && npm test && npm run build"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"eslint": "^9.32.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.38.0",
"vitest": "^3.2.4"
}
}