express-storage 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +28 -17
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "express-storage",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "One API for all cloud storage: AWS S3, Google Cloud, Azure & local disk. Secure Express.js file uploads with presigned URLs, validation, and zero-config provider switching. Built-in path traversal prevention, file validation, and automatic filename sanitization.",
5
5
  "homepage": "https://github.com/th3hero/express-storage#readme",
6
6
  "bugs": {
@@ -89,29 +89,40 @@
89
89
  "test:watch": "vitest",
90
90
  "test:coverage": "vitest run --coverage"
91
91
  },
92
- "peerDependencies": {
93
- "express": "^4.21.2"
94
- },
95
92
  "engines": {
96
- "node": ">=16.0.0"
93
+ "node": ">=18.0.0"
97
94
  },
98
95
  "dependencies": {
99
- "@aws-sdk/client-s3": "^3.975.0",
100
- "@aws-sdk/lib-storage": "^3.975.0",
101
- "@aws-sdk/s3-request-presigner": "^3.975.0",
102
- "@azure/identity": "^4.13.0",
103
- "@azure/storage-blob": "^12.30.0",
104
- "@google-cloud/storage": "^7.18.0",
105
- "dotenv": "^17.2.3",
106
- "multer": "^2.0.2",
107
- "tslib": "^2.8.1"
96
+ "@aws-sdk/client-s3": "^3.600.0",
97
+ "@aws-sdk/lib-storage": "^3.600.0",
98
+ "@aws-sdk/s3-request-presigner": "^3.600.0",
99
+ "@azure/identity": "^4.0.0",
100
+ "@azure/storage-blob": "^12.17.0",
101
+ "@google-cloud/storage": "^7.7.0",
102
+ "dotenv": "^16.3.0",
103
+ "tslib": "^2.6.0"
104
+ },
105
+ "peerDependencies": {
106
+ "express": "^4.18.0 || ^5.0.0",
107
+ "multer": "^1.4.5-lts.1 || ^2.0.0"
108
+ },
109
+ "peerDependenciesMeta": {
110
+ "express": {
111
+ "optional": false
112
+ },
113
+ "multer": {
114
+ "optional": true
115
+ }
116
+ },
117
+ "overrides": {
118
+ "fast-xml-parser": "^5.3.4"
108
119
  },
109
120
  "devDependencies": {
110
121
  "@types/express": "^5.0.6",
111
122
  "@types/multer": "^2.0.0",
112
- "@types/node": "^25.0.10",
113
- "@typescript-eslint/eslint-plugin": "^8.53.1",
114
- "@typescript-eslint/parser": "^8.53.1",
123
+ "@types/node": "^25.2.0",
124
+ "@typescript-eslint/eslint-plugin": "^8.54.0",
125
+ "@typescript-eslint/parser": "^8.54.0",
115
126
  "@vitest/coverage-v8": "^4.0.18",
116
127
  "eslint": "^9.39.2",
117
128
  "memfs": "^4.56.10",