@spinajs/queue-stomp-transport 2.0.481 → 2.0.484

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/package.json CHANGED
@@ -1,18 +1,19 @@
1
1
  {
2
2
  "name": "@spinajs/queue-stomp-transport",
3
- "version": "2.0.481",
4
- "description": "simple job transport based on sqlite. Reads & writes jobs to execute in local sqlite database. used for testing & simple projects",
5
-
6
- "main": "lib/cjs/index.js",
3
+ "version": "2.0.484",
4
+ "description": "STOMP-over-WebSocket queue transport for SpinaJS. Publishes & consumes jobs/events on a STOMP broker (e.g. ActiveMQ) with reconnect, durable subscriptions and dead-letter routing.",
5
+ "main": "lib/cjs/index.js",
7
6
  "module": "lib/mjs/index.js",
8
7
  "exports": {
9
- ".": {
10
- "import": "./lib/mjs/index.js",
11
- "require": "./lib/cjs/index.js"
12
- }
8
+ ".": {
9
+ "types": "./lib/mjs/index.d.ts",
10
+ "import": "./lib/mjs/index.js",
11
+ "require": "./lib/cjs/index.js"
12
+ }
13
13
  },
14
14
  "type": "module",
15
15
  "private": false,
16
+ "publishConfig": { "access": "public" },
16
17
  "engines": {
17
18
  "node": ">=16.11"
18
19
  },
@@ -29,12 +30,10 @@
29
30
  "lint": "eslint -c .eslintrc.cjs --ext .ts src --fix",
30
31
  "preversion": "npm run lint",
31
32
  "version": "npm run format && git add -A src"
32
-
33
33
  },
34
34
  "files": [
35
35
  "lib/**/*"
36
36
  ],
37
-
38
37
  "repository": {
39
38
  "type": "git",
40
39
  "url": "git+https://github.com/spinajs/main.git"
@@ -54,13 +53,14 @@
54
53
  "@types/node": "^18.11.18"
55
54
  },
56
55
  "dependencies": {
57
- "@spinajs/configuration": "^2.0.481",
58
- "@spinajs/di": "^2.0.481",
59
- "@spinajs/exceptions": "^2.0.481",
60
- "@spinajs/log": "^2.0.481",
61
- "@spinajs/queue": "^2.0.481",
56
+ "@spinajs/configuration": "^2.0.484",
57
+ "@spinajs/di": "^2.0.484",
58
+ "@spinajs/exceptions": "^2.0.484",
59
+ "@spinajs/log": "^2.0.484",
60
+ "@spinajs/queue": "^2.0.484",
62
61
  "@stomp/stompjs": "^6.1.2",
63
- "websocket": "^1.0.34"
62
+ "websocket": "^1.0.34",
63
+ "@spinajs/util": "^2.0.484"
64
64
  },
65
65
  "gitHead": "002dc553b0ffffd72193d0121ac425a4083bc9ee"
66
66
  }