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>
27 lines
592 B
JSON
27 lines
592 B
JSON
{
|
|
"name": "@smoke/service",
|
|
"version": "1.0.1",
|
|
"description": "Service - depends on @smoke/core and @smoke/utils with workspace:*",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": ["dist"],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@smoke/core": "workspace:*",
|
|
"@smoke/utils": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|