@quatrain/storage-s3 1.1.22 → 1.1.24

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 (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +7 -2
package/README.md CHANGED
@@ -35,6 +35,10 @@ const s3Adapter = new S3Adapter({
35
35
  Storage.addAdapter('s3', s3Adapter, true)
36
36
  ```
37
37
 
38
+ ## Documentation
39
+
40
+ For concrete examples and usage guides, please refer to the [How-To Guide](HOWTO.md).
41
+
38
42
  ## License
39
43
 
40
44
  AGPL-3.0-only
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quatrain/storage-s3",
3
- "version": "1.1.22",
3
+ "version": "1.1.24",
4
4
  "description": "Storage adapter for S3 compatible services",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,6 +11,11 @@
11
11
  "dist/",
12
12
  "README.md"
13
13
  ],
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/Quatrain/Core.git",
17
+ "directory": "packages/storage-s3"
18
+ },
14
19
  "author": "Quatrain Développement SAS <developers@quatrain.com>",
15
20
  "license": "AGPL-3.0-only",
16
21
  "devDependencies": {
@@ -27,7 +32,7 @@
27
32
  "dependencies": {
28
33
  "@aws-sdk/client-s3": "^3.337.0",
29
34
  "@aws-sdk/s3-request-presigner": "^3.342.0",
30
- "@quatrain/storage": "^1.1.31",
35
+ "@quatrain/storage": "^1.1.33",
31
36
  "fs-extra": "^11.2.0"
32
37
  },
33
38
  "scripts": {