@kb-labs/workflow-engine 2.114.0 → 2.116.12
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 +25 -25
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kb-labs/workflow-engine",
|
|
3
3
|
"description": "Workflow orchestration engine for KB Labs.",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.116.12",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -17,33 +17,21 @@
|
|
|
17
17
|
"README.md",
|
|
18
18
|
"LICENSE"
|
|
19
19
|
],
|
|
20
|
-
"scripts": {
|
|
21
|
-
"build": "pnpm clean && tsup --config tsup.config.ts",
|
|
22
|
-
"clean": "rimraf dist",
|
|
23
|
-
"dev": "tsup --config tsup.config.ts --watch",
|
|
24
|
-
"lint": "eslint . --ignore-pattern 'dist/**'",
|
|
25
|
-
"lint:fix": "eslint . --fix --ignore-pattern 'dist/**'",
|
|
26
|
-
"test": "vitest run --passWithNoTests",
|
|
27
|
-
"test:watch": "vitest",
|
|
28
|
-
"type-check": "tsc --noEmit"
|
|
29
|
-
},
|
|
30
20
|
"dependencies": {
|
|
31
|
-
"@kb-labs/core-retry": "^2.114.0",
|
|
32
|
-
"@kb-labs/core-contracts": "^2.114.0",
|
|
33
|
-
"@kb-labs/core-platform": "^2.114.0",
|
|
34
|
-
"@kb-labs/core-registry": "^2.114.0",
|
|
35
|
-
"@kb-labs/plugin-contracts": "^2.114.0",
|
|
36
|
-
"@kb-labs/plugin-execution": "^2.114.0",
|
|
37
|
-
"@kb-labs/workflow-artifacts": "^2.114.0",
|
|
38
|
-
"@kb-labs/workflow-constants": "^2.114.0",
|
|
39
|
-
"@kb-labs/workflow-contracts": "^2.114.0",
|
|
40
21
|
"nanoid": "^5.1.6",
|
|
41
22
|
"yaml": "^2.8.0",
|
|
42
|
-
"zod": "^3.25.76"
|
|
23
|
+
"zod": "^3.25.76",
|
|
24
|
+
"@kb-labs/core-retry": "2.116.12",
|
|
25
|
+
"@kb-labs/core-platform": "2.116.12",
|
|
26
|
+
"@kb-labs/plugin-contracts": "2.116.12",
|
|
27
|
+
"@kb-labs/workflow-artifacts": "2.116.12",
|
|
28
|
+
"@kb-labs/plugin-execution": "2.116.12",
|
|
29
|
+
"@kb-labs/core-contracts": "2.116.12",
|
|
30
|
+
"@kb-labs/workflow-constants": "2.116.12",
|
|
31
|
+
"@kb-labs/core-registry": "2.116.12",
|
|
32
|
+
"@kb-labs/workflow-contracts": "2.116.12"
|
|
43
33
|
},
|
|
44
34
|
"devDependencies": {
|
|
45
|
-
"@kb-labs/devkit": "workspace:*",
|
|
46
|
-
"@kb-labs/shared-testing": "workspace:*",
|
|
47
35
|
"@types/node": "^24.3.3",
|
|
48
36
|
"@typescript-eslint/eslint-plugin": "^8",
|
|
49
37
|
"@typescript-eslint/parser": "^8",
|
|
@@ -51,7 +39,9 @@
|
|
|
51
39
|
"rimraf": "^6.0.1",
|
|
52
40
|
"tsup": "^8.5.0",
|
|
53
41
|
"typescript": "^5.6.3",
|
|
54
|
-
"vitest": "^3.2.6"
|
|
42
|
+
"vitest": "^3.2.6",
|
|
43
|
+
"@kb-labs/devkit": "2.116.12",
|
|
44
|
+
"@kb-labs/shared-testing": "2.116.12"
|
|
55
45
|
},
|
|
56
46
|
"engines": {
|
|
57
47
|
"node": ">=22.0.0",
|
|
@@ -64,5 +54,15 @@
|
|
|
64
54
|
"src/*"
|
|
65
55
|
]
|
|
66
56
|
}
|
|
57
|
+
},
|
|
58
|
+
"scripts": {
|
|
59
|
+
"build": "pnpm clean && tsup --config tsup.config.ts",
|
|
60
|
+
"clean": "rimraf dist",
|
|
61
|
+
"dev": "tsup --config tsup.config.ts --watch",
|
|
62
|
+
"lint": "eslint . --ignore-pattern 'dist/**'",
|
|
63
|
+
"lint:fix": "eslint . --fix --ignore-pattern 'dist/**'",
|
|
64
|
+
"test": "vitest run --passWithNoTests",
|
|
65
|
+
"test:watch": "vitest",
|
|
66
|
+
"type-check": "tsc --noEmit"
|
|
67
67
|
}
|
|
68
|
-
}
|
|
68
|
+
}
|