@amqp-contract/worker 0.6.0 → 0.8.0

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,13 +1,21 @@
1
1
  {
2
2
  "name": "@amqp-contract/worker",
3
- "version": "0.6.0",
3
+ "version": "0.8.0",
4
4
  "description": "Worker utilities for consuming messages using amqp-contract",
5
5
  "keywords": [
6
6
  "amqp",
7
7
  "contract",
8
8
  "rabbitmq",
9
9
  "typescript",
10
- "worker"
10
+ "worker",
11
+ "nodejs",
12
+ "messaging",
13
+ "type-safe",
14
+ "schema",
15
+ "validation",
16
+ "message-broker",
17
+ "message-queue",
18
+ "consumer"
11
19
  ],
12
20
  "homepage": "https://github.com/btravers/amqp-contract#readme",
13
21
  "bugs": {
@@ -44,32 +52,31 @@
44
52
  "dependencies": {
45
53
  "@standard-schema/spec": "1.1.0",
46
54
  "@swan-io/boxed": "3.2.1",
47
- "@amqp-contract/contract": "0.6.0",
48
- "@amqp-contract/core": "0.6.0"
55
+ "@amqp-contract/contract": "0.8.0",
56
+ "@amqp-contract/core": "0.8.0"
49
57
  },
50
58
  "devDependencies": {
51
59
  "@types/amqplib": "0.10.8",
52
- "@types/node": "25.0.3",
60
+ "@types/node": "25.0.5",
53
61
  "@vitest/coverage-v8": "4.0.16",
54
62
  "amqp-connection-manager": "5.0.0",
55
63
  "amqplib": "0.10.9",
56
- "tsdown": "0.18.3",
64
+ "tsdown": "0.19.0",
57
65
  "typedoc": "0.28.15",
58
66
  "typedoc-plugin-markdown": "4.9.0",
59
67
  "typescript": "5.9.3",
60
68
  "vitest": "4.0.16",
61
- "zod": "4.2.1",
62
- "@amqp-contract/testing": "0.6.0",
63
- "@amqp-contract/tsconfig": "0.0.0",
64
- "@amqp-contract/typedoc": "0.0.1"
69
+ "zod": "4.3.5",
70
+ "@amqp-contract/testing": "0.8.0",
71
+ "@amqp-contract/tsconfig": "0.1.0",
72
+ "@amqp-contract/typedoc": "0.1.0"
65
73
  },
66
74
  "scripts": {
67
75
  "build": "tsdown src/index.ts --format cjs,esm --dts --clean",
68
76
  "build:docs": "typedoc",
69
77
  "dev": "tsdown src/index.ts --format cjs,esm --dts --watch",
70
- "test": "vitest run --project integration",
78
+ "test": "vitest run --project unit",
71
79
  "test:integration": "vitest run --project integration",
72
- "test:watch": "vitest --project integration",
73
80
  "typecheck": "tsc --noEmit"
74
81
  }
75
82
  }