@marktoflow/cli 2.0.0-alpha.14 → 2.0.0-alpha.15

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +8 -7
package/dist/index.js CHANGED
@@ -20,7 +20,7 @@ import { parse as parseYaml } from 'yaml';
20
20
  import { executeDryRun, displayDryRunSummary } from './commands/dry-run.js';
21
21
  import { WorkflowDebugger, parseBreakpoints } from './commands/debug.js';
22
22
  import { parseInputPairs, debugLogInputs, validateAndApplyDefaults, printMissingInputsError, overrideAgentInWorkflow, debugLogAgentOverride, overrideModelInWorkflow, } from './utils/index.js';
23
- const VERSION = '2.0.0-alpha.14';
23
+ const VERSION = '2.0.0-alpha.15';
24
24
  // Load environment variables from .env files on CLI startup
25
25
  loadEnv();
26
26
  function getConfig() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marktoflow/cli",
3
- "version": "2.0.0-alpha.14",
3
+ "version": "2.0.0-alpha.15",
4
4
  "description": "Agent automation framework with native MCP support",
5
5
  "type": "module",
6
6
  "bin": {
@@ -27,17 +27,15 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "@inquirer/prompts": "^8.2.0",
30
- "@marktoflow/core": "2.0.0-alpha.14",
31
- "@marktoflow/integrations": "2.0.0-alpha.14",
30
+ "@marktoflow/core": "2.0.0-alpha.15",
31
+ "@marktoflow/gui": "2.0.0-alpha.15",
32
+ "@marktoflow/integrations": "2.0.0-alpha.15",
32
33
  "chalk": "^5.3.0",
33
34
  "commander": "^12.1.0",
34
35
  "open": "^10.1.0",
35
36
  "ora": "^8.1.0",
36
37
  "yaml": "^2.6.0"
37
38
  },
38
- "optionalDependencies": {
39
- "@marktoflow/gui": "2.0.0-alpha.14"
40
- },
41
39
  "devDependencies": {
42
40
  "tsx": "^4.19.0"
43
41
  },
@@ -57,5 +55,8 @@
57
55
  "ai-agents"
58
56
  ],
59
57
  "author": "Scott Glover",
60
- "license": "Apache-2.0"
58
+ "license": "Apache-2.0",
59
+ "publishConfig": {
60
+ "registry": "https://registry.npmjs.org/"
61
+ }
61
62
  }