24 lines
568 B
JSON
24 lines
568 B
JSON
{
|
|
"name": "image-processor-lambda",
|
|
"version": "1.0.0",
|
|
"description": "Lambda function to extract and strip image metadata from uploads",
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"@aws-sdk/client-s3": "^3.400.0",
|
|
"@rentall/lambda-shared": "file:../shared",
|
|
"exif-reader": "^2.0.0",
|
|
"sharp": "^0.33.0"
|
|
},
|
|
"devDependencies": {
|
|
"dotenv": "^17.2.3",
|
|
"jest": "^30.1.3"
|
|
},
|
|
"scripts": {
|
|
"test": "jest",
|
|
"local": "node -r dotenv/config test-local.js dotenv_config_path=.env.dev"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|