@dbos-inc/dbos-sdk 3.5.7 → 3.5.8
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 +6 -0
- package/package.json +24 -1
package/README.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
<div align="center">
|
2
2
|
|
3
|
+
[](https://github.com/dbos-inc/dbos-transact-ts/actions/workflows/on_push.yml)
|
4
|
+
[](https://www.npmjs.com/package/@dbos-inc/dbos-sdk)
|
5
|
+
[](https://www.npmjs.com/package/@dbos-inc/dbos-sdk)
|
6
|
+
[](LICENSE)
|
7
|
+
[](https://discord.com/invite/jsmC6pXGgX)
|
8
|
+
|
3
9
|
# DBOS Transact: Lightweight Durable Workflows
|
4
10
|
|
5
11
|
#### [Documentation](https://docs.dbos.dev/) • [Examples](https://docs.dbos.dev/examples) • [Github](https://github.com/dbos-inc) • [Discord](https://discord.com/invite/jsmC6pXGgX)
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dbos-inc/dbos-sdk",
|
3
|
-
"version": "3.5.
|
3
|
+
"version": "3.5.8",
|
4
4
|
"description": "A Typescript framework built on the database",
|
5
5
|
"license": "MIT",
|
6
6
|
"repository": {
|
@@ -8,6 +8,29 @@
|
|
8
8
|
"url": "https://github.com/dbos-inc/dbos-transact-ts"
|
9
9
|
},
|
10
10
|
"homepage": "https://docs.dbos.dev/",
|
11
|
+
"engines": {
|
12
|
+
"node": ">=20"
|
13
|
+
},
|
14
|
+
"keywords": [
|
15
|
+
"dbos",
|
16
|
+
"task manager",
|
17
|
+
"workflow engine",
|
18
|
+
"workflows",
|
19
|
+
"orchestration",
|
20
|
+
"scheduled jobs",
|
21
|
+
"cron jobs",
|
22
|
+
"queue",
|
23
|
+
"background jobs",
|
24
|
+
"step function",
|
25
|
+
"durable execution",
|
26
|
+
"long-running",
|
27
|
+
"durable workflow",
|
28
|
+
"reliability",
|
29
|
+
"parallel processing",
|
30
|
+
"flow control",
|
31
|
+
"agentic workflow",
|
32
|
+
"postgresql"
|
33
|
+
],
|
11
34
|
"main": "dist/src/index.js",
|
12
35
|
"types": "dist/src/index.d.ts",
|
13
36
|
"exports": {
|