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>
10 lines
326 B
JSON
10 lines
326 B
JSON
{
|
|
"name": "library-sample",
|
|
"private": true,
|
|
"workspaces": ["core", "utils", "service"],
|
|
"scripts": {
|
|
"build": "bun run --filter '*' build",
|
|
"clean": "rm -rf */dist */node_modules node_modules",
|
|
"publish:all": "bun run --filter '*' exec npm publish --ignore-scripts --registry http://localhost:4874"
|
|
}
|
|
}
|