workflow-agent-cli 2.14.1 → 2.16.0

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.
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "workflow-agent-cli",
3
- "version": "2.14.1",
3
+ "version": "2.16.0",
4
4
  "description": "A self-evolving workflow management system for AI agent development",
5
5
  "keywords": [
6
6
  "workflow",
@@ -41,6 +41,34 @@
41
41
  "templates",
42
42
  "README.md"
43
43
  ],
44
+ "dependencies": {
45
+ "@clack/prompts": "^0.7.0",
46
+ "@hawkinside_out/workflow-improvement-tracker": "^1.1.1",
47
+ "chalk": "^5.3.0",
48
+ "commander": "^11.1.0",
49
+ "cosmiconfig": "^9.0.0",
50
+ "didyoumean2": "^6.0.0",
51
+ "execa": "^8.0.1",
52
+ "fast-glob": "^3.3.2",
53
+ "mustache": "^4.2.0",
54
+ "picocolors": "^1.0.0",
55
+ "zod": "^3.22.4"
56
+ },
57
+ "devDependencies": {
58
+ "@types/mustache": "^4.2.5",
59
+ "@types/node": "^20.11.5",
60
+ "eslint": "^8.56.0",
61
+ "memfs": "^4.56.2",
62
+ "tsup": "^8.0.1",
63
+ "typescript": "^5.3.3",
64
+ "vitest": "^1.6.1"
65
+ },
66
+ "engines": {
67
+ "node": ">=18.0.0"
68
+ },
69
+ "publishConfig": {
70
+ "access": "public"
71
+ },
44
72
  "scripts": {
45
73
  "build": "tsup",
46
74
  "dev": "tsup --watch",
@@ -51,7 +79,6 @@
51
79
  "typecheck": "tsc --noEmit",
52
80
  "clean": "rm -rf dist",
53
81
  "postinstall": "node dist/scripts/postinstall.js || true",
54
- "prepublishOnly": "pnpm build && pnpm test",
55
82
  "workflow": "node dist/cli/index.js",
56
83
  "workflow:init": "node dist/cli/index.js init",
57
84
  "workflow:validate": "node dist/cli/index.js validate",
@@ -84,33 +111,5 @@
84
111
  "solution:stats": "node dist/cli/index.js solution:stats",
85
112
  "scope:create": "node dist/cli/index.js scope:create",
86
113
  "scope:migrate": "node dist/cli/index.js scope:migrate"
87
- },
88
- "dependencies": {
89
- "@clack/prompts": "^0.7.0",
90
- "@hawkinside_out/workflow-improvement-tracker": "^1.1.1",
91
- "chalk": "^5.3.0",
92
- "commander": "^11.1.0",
93
- "cosmiconfig": "^9.0.0",
94
- "didyoumean2": "^6.0.0",
95
- "execa": "^8.0.1",
96
- "fast-glob": "^3.3.2",
97
- "mustache": "^4.2.0",
98
- "picocolors": "^1.0.0",
99
- "zod": "^3.22.4"
100
- },
101
- "devDependencies": {
102
- "@types/mustache": "^4.2.5",
103
- "@types/node": "^20.11.5",
104
- "eslint": "^8.56.0",
105
- "memfs": "^4.56.2",
106
- "tsup": "^8.0.1",
107
- "typescript": "^5.3.3",
108
- "vitest": "^1.6.1"
109
- },
110
- "engines": {
111
- "node": ">=18.0.0"
112
- },
113
- "publishConfig": {
114
- "access": "public"
115
114
  }
116
- }
115
+ }