package.json
Your app package usually contains:
- the
dev,prepare,build, andstartscripts - runtime dependencies
- TypeScript and Vite dependencies
Typical scripts:
{
"scripts": {
"dev": "vuloom dev",
"prepare": "vuloom prepare",
"build": "vuloom build",
"start": "vuloom start"
}
}
Vuloom keeps the default workflow script-driven. You do not need to maintain separate client and server bootstrap scripts.