-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "s3-image-optimizer",
"version": "1.0.0",
"description": "A script to fetch images from an S3 bucket, optimize them, and upload the optimized versions back to S3.",
"main": "src/backup-and-optimize.ts",
"scripts": {
"backup-and-optimize": "tsx watch --env-file=.env src/backup-and-optimize.ts",
"push-and-replace": "tsx watch --env-file=.env src/push-and-replace.ts",
"lint": "prettier . --write"
},
"keywords": [
"s3",
"aws",
"images",
"image-optimization",
"image-compression",
"optimize",
"upload",
"download",
"s3-bucket",
"replace-images",
"nodejs",
"cli",
"automation",
"jpeg",
"png",
"webp",
"sharp"
],
"author": "Bruno Menegidio",
"license": "MIT",
"devDependencies": {
"@types/node": "^24.0.3",
"prettier": "3.5.3",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.832.0",
"sharp": "^0.34.2",
"zod": "^3.25.67"
},
"engines": {
"node": ">=20.10.0"
}
}