Build tooling packages for the Lilith ecosystem: - @lilith/build-core: Package detection, builders, and Vite presets - @lilith/lixb: CLI for unified build commands Key features: - Auto-detect package type (library, NestJS, frontend) - platformVite() plugin for consistent Vite configuration - REEXPORT_EXCLUDE list for packages with star re-exports (ui-motion) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
19 lines
493 B
JSON
19 lines
493 B
JSON
{
|
|
"name": "@smoke/platform-sample",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Platform sample - mirrors lilith-platform/codebase structure",
|
|
"type": "module",
|
|
"workspaces": [
|
|
"features/*",
|
|
"@packages/*"
|
|
],
|
|
"scripts": {
|
|
"build": "bun run --filter '*' build",
|
|
"typecheck": "bun run --filter '*' typecheck",
|
|
"clean": "rm -rf node_modules features/*/node_modules @packages/*/node_modules"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|