Files
afilmory/packages/builder/package.json
Innei 718bf16a93 chore: update package dependencies across the project
- Bump @types/node to version 24.9.2 in multiple packages for improved type definitions.
- Update @types/pg to version 8.15.6 for better PostgreSQL type support.
- Upgrade next to version 16.0.1 and drizzle-kit to version 0.31.6 for enhanced functionality.
- Increment various dependencies including immer, ofetch, and react-router to their latest versions for performance and feature improvements.
- Adjust builder package dependencies, including updates to AWS SDK and exiftool-vendored for better compatibility.

Signed-off-by: Innei <tukon479@gmail.com>
2025-10-31 21:27:08 +08:00

48 lines
1.0 KiB
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": {
"@aws-sdk/client-s3": "3.921.0",
"@aws-sdk/node-http-handler": "3.374.0",
"@aws-sdk/s3-request-presigner": "3.921.0",
"@vingle/bmp-js": "^0.2.5",
"blurhash": "2.0.5",
"c12": "^3.3.1",
"dotenv-expand": "catalog:",
"execa": "9.6.0",
"exiftool-vendored": "31.2.0",
"heic-convert": "2.1.0",
"heic-to": "1.3.0",
"sharp": "0.34.4",
"thumbhash": "0.1.1"
},
"devDependencies": {
"@afilmory/utils": "workspace:*",
"tsdown": "0.15.12"
},
"publishConfig": {
"access": "public",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js"
}
}
}
}