b00fe3ec9e
- Backend: Express + WebSocket proxy (tsx watch, strict TS, ESM) - Frontend: React 19 + Vite + Monaco + Tailwind v4 + Tauri v2 - pnpm workspace at root for single-install workflow - AGENTS.md with architectural constraints and commands - Removed Tauri greet demo, added minimal App shell - No external database, Git-as-Database philosophy
31 lines
693 B
JSON
31 lines
693 B
JSON
{
|
|
"name": "typst-leaf-backend",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "echo \"Error: no test specified\""
|
|
},
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"execa": "^9.6.1",
|
|
"express": "^4.22.2",
|
|
"simple-git": "^3.27.0",
|
|
"ws": "^8.18.2",
|
|
"zod": "^3.24.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.17.25",
|
|
"@types/node": "^22.15.17",
|
|
"@types/ws": "^8.18.1",
|
|
"tsx": "^4.19.4",
|
|
"typescript": "~5.8.3"
|
|
},
|
|
"packageManager": "pnpm@10.23.0"
|
|
}
|