@zintrust/queue-sqs 0.1.19 → 0.1.22

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 +6 -2
package/README.md CHANGED
@@ -20,3 +20,7 @@ Then set `QUEUE_DRIVER=sqs` and configure:
20
20
 
21
21
  - `AWS_REGION`
22
22
  - `SQS_QUEUE_URL` (or pass queue URL explicitly in your app config)
23
+
24
+ ## License
25
+
26
+ This package depends on the AWS SDK which is licensed under Apache 2.0. AWS SDKs are permissive licenses that allow commercial use without requiring you to open-source your code. See [AWS SDK License](https://github.com/aws/aws-sdk-js-v3/blob/main/LICENSE) for details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zintrust/queue-sqs",
3
- "version": "0.1.19",
3
+ "version": "0.1.22",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -21,8 +21,12 @@
21
21
  "engines": {
22
22
  "node": ">=20.0.0"
23
23
  },
24
+ "dependencies": {},
25
+ "devDependencies": {
26
+ "@aws-sdk/client-sqs": "^3.500.0"
27
+ },
24
28
  "peerDependencies": {
25
- "@zintrust/core": "^0.1.19"
29
+ "@zintrust/core": "^0.1.22"
26
30
  },
27
31
  "publishConfig": {
28
32
  "access": "public"