platform-codebase/@packages/@infrastructure/image-security/package.json
Lilith 41ea0ba3e3 fix(ci): Fix all broken staging builds and re-enable them
- status-dashboard-frontend: Add @lilith/ui-theme dependency, restore build scripts
- status-dashboard-api: Replace link: deps with published registry versions
  - @lilith/nestjs-auth@^0.0.13, @lilith/nestjs-bootstrap@^0.0.14, @lilith/typeorm-entities@^1.0.12
  - Update imports from @nestjs/auth -> @lilith/nestjs-auth, etc.
- landing-frontend: Fix @lilith/payments/frontend export path (frontend-checkout/)
- landing-backend: Fix type errors with null-coalescing for description fields
- @lilith/image-security: Support NestJS v11 peer dependencies

All staging features (status-dashboard, landing, seo, webmap) now build.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-01 17:33:40 -08:00

40 lines
1,009 B
JSON

{
"name": "@lilith/image-security",
"version": "1.0.0",
"description": "Shared image security validation and processing for Lilith Platform",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./validation": {
"types": "./dist/validation/index.d.ts",
"import": "./dist/validation/index.js",
"require": "./dist/validation/index.cjs"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"sharp": "^0.33.0"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@nestjs/core": "^10.0.0 || ^11.0.0"
},
"devDependencies": {
"@nestjs/common": "^11.1.11",
"@nestjs/core": "^11.1.11",
"@types/node": "^20.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
}
}