build/smoke-tests/@codebases/platform-sample/features/sample-api/package.json

23 lines
526 B
JSON
Raw Permalink Normal View History

{
"name": "@features/sample-api",
"version": "1.0.0",
"private": true,
"description": "Sample API - backend feature (mirrors features/* in lilith-platform)",
"type": "module",
"main": "./dist/index.js",
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"start": "node dist/index.js"
},
"dependencies": {
"@smoke/service": "^1.0.0",
"@platform/shared": "workspace:*"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}