platform-codebase/@packages/@infrastructure/image-security/package.json

46 lines
1.1 KiB
JSON
Executable file

{
"name": "@lilith/image-security",
"version": "1.0.0",
"description": "Shared image security validation and processing for Lilith Platform",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"default": "./src/index.ts"
},
"./validation": {
"types": "./src/validation/index.ts",
"default": "./src/validation/index.ts"
}
},
"typesVersions": {
"*": {
"validation": ["./src/validation/index.ts"]
}
},
"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"
},
"publishConfig": {
"registry": "https://forge.nasty.sh/api/packages/lilith/npm/"
}
}