lean-s3 0.1.4 → 0.1.5
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.
- package/README.md +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -159,4 +159,4 @@ const client = new S3Client({
|
|
|
159
159
|
Popular S3 provider missing? Open an issue or file a PR!
|
|
160
160
|
|
|
161
161
|
[^1]: Benchmark ran on a `13th Gen Intel(R) Core(TM) i7-1370P` using Node.js `23.11.0`. See `bench/` directory for the used benchmark.
|
|
162
|
-
[^2]: `git clone git@github.com:nikeee/lean-s3.git && cd lean-s3
|
|
162
|
+
[^2]: `git clone git@github.com:nikeee/lean-s3.git && cd lean-s3 && npm ci && cd bench && npm ci && npm start`
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "lean-s3",
|
|
3
3
|
"author": "Niklas Mollenhauer",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.5",
|
|
6
6
|
"description": "A server-side S3 API for the regular user.",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"s3",
|
|
@@ -27,20 +27,20 @@
|
|
|
27
27
|
"format": "biome format --write ./src && biome lint --write ./src && biome check --write ./src"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@aws-sdk/client-s3": "^3.
|
|
30
|
+
"@aws-sdk/client-s3": "^3.812.0",
|
|
31
31
|
"@biomejs/biome": "^1.9.4",
|
|
32
|
-
"@testcontainers/localstack": "^10.
|
|
33
|
-
"@testcontainers/minio": "^10.
|
|
34
|
-
"@types/node": "^22.15.
|
|
32
|
+
"@testcontainers/localstack": "^10.27.0",
|
|
33
|
+
"@testcontainers/minio": "^10.27.0",
|
|
34
|
+
"@types/node": "^22.15.20",
|
|
35
35
|
"expect": "^29.7.0",
|
|
36
|
-
"lefthook": "^1.11.
|
|
36
|
+
"lefthook": "^1.11.13",
|
|
37
37
|
"typedoc": "^0.28.4"
|
|
38
38
|
},
|
|
39
39
|
"engines": {
|
|
40
40
|
"node": "^20.19.0 || ^22.14.0 || ^24.0.0"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"fast-xml-parser": "^5.2.
|
|
44
|
-
"undici": "^7.
|
|
43
|
+
"fast-xml-parser": "^5.2.3",
|
|
44
|
+
"undici": "^7.10.0"
|
|
45
45
|
}
|
|
46
46
|
}
|