@marktoflow/cli 2.0.0-alpha.3
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/dist/commands/debug.d.ts +75 -0
- package/dist/commands/debug.d.ts.map +1 -0
- package/dist/commands/debug.js +375 -0
- package/dist/commands/debug.js.map +1 -0
- package/dist/commands/dry-run.d.ts +40 -0
- package/dist/commands/dry-run.d.ts.map +1 -0
- package/dist/commands/dry-run.js +360 -0
- package/dist/commands/dry-run.js.map +1 -0
- package/dist/commands/new.d.ts +14 -0
- package/dist/commands/new.d.ts.map +1 -0
- package/dist/commands/new.js +483 -0
- package/dist/commands/new.js.map +1 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +726 -0
- package/dist/index.js.map +1 -0
- package/dist/oauth.d.ts +48 -0
- package/dist/oauth.d.ts.map +1 -0
- package/dist/oauth.js +314 -0
- package/dist/oauth.js.map +1 -0
- package/dist/trigger.d.ts +3 -0
- package/dist/trigger.d.ts.map +1 -0
- package/dist/trigger.js +58 -0
- package/dist/trigger.js.map +1 -0
- package/dist/worker.d.ts +3 -0
- package/dist/worker.d.ts.map +1 -0
- package/dist/worker.js +69 -0
- package/dist/worker.js.map +1 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@marktoflow/cli",
|
|
3
|
+
"version": "2.0.0-alpha.3",
|
|
4
|
+
"description": "Universal automation framework with native MCP support",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"marktoflow": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "./dist/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/scottgl9/marktoflow.git",
|
|
14
|
+
"directory": "packages/cli"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://github.com/scottgl9/marktoflow#readme",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/scottgl9/marktoflow/issues"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsc",
|
|
22
|
+
"start": "node dist/index.js",
|
|
23
|
+
"dev": "tsx src/index.ts",
|
|
24
|
+
"test": "vitest run",
|
|
25
|
+
"lint": "tsc --noEmit",
|
|
26
|
+
"clean": "rm -rf dist"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@inquirer/prompts": "^8.2.0",
|
|
30
|
+
"@marktoflow/core": "2.0.0-alpha.3",
|
|
31
|
+
"@marktoflow/integrations": "2.0.0-alpha.3",
|
|
32
|
+
"chalk": "^5.3.0",
|
|
33
|
+
"commander": "^12.1.0",
|
|
34
|
+
"open": "^10.1.0",
|
|
35
|
+
"ora": "^8.1.0",
|
|
36
|
+
"yaml": "^2.6.0"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"tsx": "^4.19.0"
|
|
40
|
+
},
|
|
41
|
+
"files": [
|
|
42
|
+
"dist"
|
|
43
|
+
],
|
|
44
|
+
"keywords": [
|
|
45
|
+
"marktoflow",
|
|
46
|
+
"automation",
|
|
47
|
+
"workflow",
|
|
48
|
+
"cli",
|
|
49
|
+
"mcp",
|
|
50
|
+
"slack",
|
|
51
|
+
"github",
|
|
52
|
+
"jira",
|
|
53
|
+
"ai-agents"
|
|
54
|
+
],
|
|
55
|
+
"author": "Scott Glover",
|
|
56
|
+
"license": "Apache-2.0"
|
|
57
|
+
}
|