mirror of
https://github.com/Afilmory/afilmory
synced 2026-04-24 23:05:05 +00:00
- Removed dependencies on AWS SDK's S3 types in favor of a custom S3ObjectLike interface for better type management. - Updated various services and components to utilize the new S3ObjectLike type, enhancing code clarity and maintainability. - Introduced a SimpleS3Client interface to streamline S3 client interactions and improve fetch handling. - Added fast-xml-parser for XML response parsing in S3 operations, enhancing object listing functionality. Signed-off-by: Innei <tukon479@gmail.com>
46 lines
940 B
JSON
46 lines
940 B
JSON
{
|
|
"name": "@afilmory/builder",
|
|
"type": "module",
|
|
"version": "0.1.3",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./*": "./src/*"
|
|
},
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"bump": "nbump",
|
|
"cli": "tsx src/cli.ts"
|
|
},
|
|
"dependencies": {
|
|
"@vingle/bmp-js": "^0.2.5",
|
|
"blurhash": "2.0.5",
|
|
"c12": "^3.3.2",
|
|
"dotenv-expand": "catalog:",
|
|
"execa": "9.6.0",
|
|
"exiftool-vendored": "31.1.0",
|
|
"fast-xml-parser": "4.4.1",
|
|
"heic-convert": "2.1.0",
|
|
"heic-to": "1.3.0",
|
|
"sharp": "0.34.5",
|
|
"thumbhash": "0.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@afilmory/utils": "workspace:*",
|
|
"tsdown": "0.16.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"main": "./dist/index.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./*": {
|
|
"types": "./dist/*.d.ts",
|
|
"import": "./dist/*.js"
|
|
}
|
|
}
|
|
}
|
|
}
|