@zintrust/storage-gcs 0.1.19 → 0.1.20
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 +4 -0
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -17,3 +17,7 @@ import '@zintrust/storage-gcs/register';
|
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
You will also need `@google-cloud/storage` installed in your app.
|
|
20
|
+
|
|
21
|
+
## License
|
|
22
|
+
|
|
23
|
+
This package depends on Google Cloud Storage which is licensed under Apache 2.0. Apache 2.0 is a permissive license that allows commercial use without requiring you to open-source your code. See [Google Cloud Storage License](https://github.com/googleapis/nodejs-storage/blob/main/LICENSE) for details.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zintrust/storage-gcs",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.20",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -21,8 +21,11 @@
|
|
|
21
21
|
"engines": {
|
|
22
22
|
"node": ">=20.0.0"
|
|
23
23
|
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@google-cloud/storage": "^7.0.0"
|
|
26
|
+
},
|
|
24
27
|
"peerDependencies": {
|
|
25
|
-
"@zintrust/core": "^0.1.
|
|
28
|
+
"@zintrust/core": "^0.1.20"
|
|
26
29
|
},
|
|
27
30
|
"publishConfig": {
|
|
28
31
|
"access": "public"
|