@crewx/workflow 0.3.15 → 0.3.16
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 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crewx/workflow",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.16",
|
|
4
4
|
"description": "Workflow engine for CrewX - list, show, validate workflows with Mermaid visualization",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "dist/src/engine.js",
|
|
@@ -26,13 +26,6 @@
|
|
|
26
26
|
"SKILL.md",
|
|
27
27
|
"workflow-schema.json"
|
|
28
28
|
],
|
|
29
|
-
"scripts": {
|
|
30
|
-
"prepare": "npm run build",
|
|
31
|
-
"build": "tsc && cp workflow-schema.json dist/",
|
|
32
|
-
"dev": "ts-node cli.ts",
|
|
33
|
-
"clean": "rm -rf dist",
|
|
34
|
-
"test": "vitest run"
|
|
35
|
-
},
|
|
36
29
|
"keywords": [
|
|
37
30
|
"crewx",
|
|
38
31
|
"workflow",
|
|
@@ -41,11 +34,11 @@
|
|
|
41
34
|
],
|
|
42
35
|
"license": "MIT",
|
|
43
36
|
"dependencies": {
|
|
44
|
-
"@crewx/knowledge-core": "workspace:*",
|
|
45
|
-
"@crewx/sdk": "workspace:*",
|
|
46
|
-
"@crewx/shared": "workspace:*",
|
|
47
37
|
"@hyperjump/json-schema": "^1.9.4",
|
|
48
|
-
"js-yaml": "^4.1.0"
|
|
38
|
+
"js-yaml": "^4.1.0",
|
|
39
|
+
"@crewx/knowledge-core": "0.1.5",
|
|
40
|
+
"@crewx/shared": "0.0.4",
|
|
41
|
+
"@crewx/sdk": "0.8.3-rc.5"
|
|
49
42
|
},
|
|
50
43
|
"devDependencies": {
|
|
51
44
|
"@types/js-yaml": "^4.0.9",
|
|
@@ -53,5 +46,11 @@
|
|
|
53
46
|
"ts-node": "^10.9.0",
|
|
54
47
|
"typescript": "^5.0.0",
|
|
55
48
|
"vitest": "^1.6.1"
|
|
49
|
+
},
|
|
50
|
+
"scripts": {
|
|
51
|
+
"build": "tsc && cp workflow-schema.json dist/",
|
|
52
|
+
"dev": "ts-node cli.ts",
|
|
53
|
+
"clean": "rm -rf dist",
|
|
54
|
+
"test": "vitest run"
|
|
56
55
|
}
|
|
57
|
-
}
|
|
56
|
+
}
|