agent-enderun 0.5.3 → 0.5.6

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/bin/cli.js CHANGED
@@ -165,6 +165,7 @@ function mergePackageJson(targetPath, sourcePath) {
165
165
  const sourceDevDeps = sourcePkg.devDependencies || {};
166
166
  targetPkg.devDependencies = sanitizeDeps({
167
167
  ...targetPkg.devDependencies,
168
+ "agent-enderun": `^${sourcePkg.version}`,
168
169
  ...(sourceDevDeps["@modelcontextprotocol/sdk"] ? {"@modelcontextprotocol/sdk": sourceDevDeps["@modelcontextprotocol/sdk"]} : {}),
169
170
  ...(sourceDevDeps["zod"] ? {"zod": sourceDevDeps["zod"]} : {}),
170
171
  ...(sourceDevDeps["ts-morph"] ? {"ts-morph": sourceDevDeps["ts-morph"]} : {}),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-enderun",
3
- "version": "0.5.3",
3
+ "version": "0.5.6",
4
4
  "description": "The Supreme AI Governance & Orchestration Framework for Enterprise Development",
5
5
  "author": "Yusuf BEKAR",
6
6
  "license": "MIT",
@@ -69,7 +69,7 @@
69
69
  "access": "public"
70
70
  },
71
71
  "devDependencies": {
72
- "@eslint/js": "^10.0.1",
72
+ "@eslint/js": "^9.20.0",
73
73
  "@types/node": "^22.13.4",
74
74
  "concurrently": "^9.1.2",
75
75
  "eslint": "^9.20.1",
File without changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-enderun-mcp",
3
- "version": "0.5.3",
3
+ "version": "0.5.6",
4
4
  "description": "Enterprise-grade MCP Server for AI Agent Framework",
5
5
  "author": "Yusuf BEKAR",
6
6
  "license": "MIT",
@@ -30,7 +30,6 @@
30
30
  "start": "node dist/index.js",
31
31
  "dev": "tsx src/index.ts"
32
32
  },
33
- "license": "MIT",
34
33
  "dependencies": {
35
34
  "@modelcontextprotocol/sdk": "^1.26.0",
36
35
  "ts-morph": "^28.0.0",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-enderun/shared-types",
3
- "version": "0.5.3",
3
+ "version": "0.5.6",
4
4
  "description": "Shared TypeScript types for AI-Enderun Framework. Ensures Contract-First synchronization between agents.",
5
5
  "author": "Yusuf BEKAR",
6
6
  "license": "MIT",
@@ -27,7 +27,6 @@
27
27
  "build:watch": "tsc -p tsconfig.json --watch",
28
28
  "typecheck": "tsc -p tsconfig.json --noEmit"
29
29
  },
30
- "license": "MIT",
31
30
  "devDependencies": {
32
31
  "typescript": "^5.9.3"
33
32
  }