@igniter-js/jobs 0.1.0 → 0.1.1

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@igniter-js/jobs",
3
- "version": "0.1.0",
4
- "description": "Type-safe background job processing library for Igniter.js with BullMQ support, typed queues, cron jobs, and distributed management APIs",
3
+ "version": "0.1.1",
4
+ "description": "Type-safe jobs and worker builder for Igniter.js with adapter-based backends and BullMQ integration",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "sideEffects": false,
@@ -41,13 +41,10 @@
41
41
  "igniter",
42
42
  "igniterjs",
43
43
  "jobs",
44
- "queue",
45
- "background",
44
+ "queues",
46
45
  "bullmq",
47
- "redis",
48
- "cron",
49
46
  "worker",
50
- "distributed",
47
+ "scheduler",
51
48
  "typescript",
52
49
  "type-safe"
53
50
  ],
@@ -61,33 +58,54 @@
61
58
  "bugs": {
62
59
  "url": "https://github.com/felipebarcelospro/igniter-js/issues"
63
60
  },
64
- "homepage": "https://igniterjs.com/docs/jobs",
61
+ "homepage": "https://igniterjs.com",
62
+ "dependencies": {},
65
63
  "devDependencies": {
64
+ "@igniter-js/adapter-bullmq": "*",
66
65
  "@igniter-js/core": "*",
66
+ "@igniter-js/store": "*",
67
67
  "@igniter-js/telemetry": "*",
68
- "bullmq": "^5.0.0",
68
+ "@types/node": "^22.7.5",
69
+ "bullmq": "4.18.3",
69
70
  "ioredis": "^5.3.2",
70
- "tsup": "^8.3.5",
71
+ "tsup": "^8.3.0",
71
72
  "typescript": "^5.6.3",
72
73
  "vitest": "^2.1.4",
73
- "zod": "^4.2.0"
74
+ "zod": "3.23.8"
74
75
  },
75
76
  "peerDependencies": {
76
- "@igniter-js/core": "*",
77
- "@igniter-js/telemetry": "*",
78
- "bullmq": ">=4.0.0",
79
- "ioredis": ">=5.0.0",
80
- "zod": ">=3.0.0"
77
+ "@igniter-js/adapter-bullmq": ">=0.3.4",
78
+ "@igniter-js/core": ">=0.2.94",
79
+ "@igniter-js/store": ">=0.1.0",
80
+ "@igniter-js/telemetry": ">=0.1.0",
81
+ "bullmq": ">=4.18.3",
82
+ "ioredis": ">=5.3.2",
83
+ "zod": ">=3.23.8"
81
84
  },
82
85
  "peerDependenciesMeta": {
86
+ "@igniter-js/adapter-bullmq": {
87
+ "optional": true
88
+ },
89
+ "@igniter-js/store": {
90
+ "optional": true
91
+ },
83
92
  "@igniter-js/telemetry": {
84
93
  "optional": true
85
94
  },
86
95
  "bullmq": {
87
96
  "optional": true
88
97
  },
98
+ "ioredis": {
99
+ "optional": true
100
+ },
89
101
  "zod": {
90
102
  "optional": true
91
103
  }
104
+ },
105
+ "publishConfig": {
106
+ "access": "public"
107
+ },
108
+ "engines": {
109
+ "node": ">=18.0.0"
92
110
  }
93
111
  }