@intelligo-dev/jobs 1.0.0-beta.3 → 1.0.0-beta.6
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 +20 -0
- package/package.json +14 -4
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# @intelligo-dev/jobs
|
|
2
|
+
|
|
3
|
+
A Postgres-backed job queue. No Redis.
|
|
4
|
+
|
|
5
|
+
Part of [Intelligo](https://github.com/intelligo-mn/framework), an application
|
|
6
|
+
framework and operational platform for vertical AI SaaS products. This package
|
|
7
|
+
is published from that repository and is not meant to be used on its own.
|
|
8
|
+
|
|
9
|
+
## Install
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pnpm add @intelligo-dev/jobs
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Enqueue, claim with `FOR UPDATE SKIP LOCKED`, retry with backoff, prune. One
|
|
16
|
+
fewer moving part in an operational stack that already has Postgres.
|
|
17
|
+
|
|
18
|
+
## Licence
|
|
19
|
+
|
|
20
|
+
Apache-2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intelligo-dev/jobs",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.6",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -23,19 +23,29 @@
|
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"
|
|
27
|
-
"@intelligo-dev/core": "1.0.0-beta.3"
|
|
26
|
+
"@intelligo-dev/core": "1.0.0-beta.6"
|
|
28
27
|
},
|
|
29
28
|
"devDependencies": {
|
|
30
29
|
"@types/node": "^22.0.0",
|
|
30
|
+
"drizzle-orm": "^0.45.1",
|
|
31
31
|
"typescript": "^5.7.2"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
|
-
"dist"
|
|
34
|
+
"dist",
|
|
35
|
+
"LICENSE",
|
|
36
|
+
"README.md",
|
|
37
|
+
"!dist/**/*.tsbuildinfo"
|
|
35
38
|
],
|
|
36
39
|
"publishConfig": {
|
|
37
40
|
"access": "public"
|
|
38
41
|
},
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"drizzle-orm": "^0.45.1"
|
|
44
|
+
},
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=22"
|
|
47
|
+
},
|
|
48
|
+
"sideEffects": false,
|
|
39
49
|
"scripts": {
|
|
40
50
|
"type-check": "tsc --noEmit",
|
|
41
51
|
"lint": "eslint .",
|