@ooneex/queue 0.0.3 → 0.0.4
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 +12 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ooneex/queue",
|
|
3
3
|
"description": "Job queue management for background task processing and asynchronous workload execution",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist",
|
|
@@ -21,7 +21,16 @@
|
|
|
21
21
|
"test": "bun test tests",
|
|
22
22
|
"build": "bunup",
|
|
23
23
|
"lint": "tsgo --noEmit && bunx biome lint",
|
|
24
|
-
"publish": "bun publish --
|
|
24
|
+
"publish": "bun publish --access public || true"
|
|
25
25
|
},
|
|
26
|
-
"devDependencies": {}
|
|
26
|
+
"devDependencies": {},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"background-jobs",
|
|
29
|
+
"bun",
|
|
30
|
+
"job-queue",
|
|
31
|
+
"ooneex",
|
|
32
|
+
"queue",
|
|
33
|
+
"typescript",
|
|
34
|
+
"worker"
|
|
35
|
+
]
|
|
27
36
|
}
|