@mutagent/cli 0.1.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.
- package/README.md +447 -0
- package/dist/bin/cli.js +17510 -0
- package/dist/bin/cli.js.map +411 -0
- package/dist/index.js +13935 -0
- package/dist/index.js.map +378 -0
- package/package.json +77 -0
package/package.json
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mutagent/cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Bun-native CLI for MutagenT AI platform - AI-first agent integration",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"mutagent": "./dist/bin/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "./dist/index.js",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"dev": "bun run src/bin/cli.ts",
|
|
18
|
+
"build": "bun build src/bin/cli.ts src/index.ts --outdir dist --target node --sourcemap --external commander --external chalk --external ora --external inquirer --external cosmiconfig --external zod --external handlebars",
|
|
19
|
+
"test": "bun test",
|
|
20
|
+
"typecheck": "tsc --noEmit",
|
|
21
|
+
"lint": "eslint src/**/*.ts --format compact",
|
|
22
|
+
"lint:fix": "eslint src/**/*.ts --fix --format compact",
|
|
23
|
+
"verify": "bun run lint && bun run typecheck && bun run build",
|
|
24
|
+
"verify:fix": "bun run lint:fix && bun run typecheck && bun run build"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@mutagent/sdk": "^0.2.13",
|
|
28
|
+
"chalk": "^5.3.0",
|
|
29
|
+
"commander": "^12.1.0",
|
|
30
|
+
"cosmiconfig": "^9.0.0",
|
|
31
|
+
"handlebars": "^4.7.8",
|
|
32
|
+
"inquirer": "^12.0.0",
|
|
33
|
+
"open": "11.0.0",
|
|
34
|
+
"openai": "^4.0.0",
|
|
35
|
+
"ora": "^8.1.0",
|
|
36
|
+
"zod": "^4.3.6"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@changesets/cli": "^2.27.1",
|
|
40
|
+
"@types/bun": "latest",
|
|
41
|
+
"@types/inquirer": "^9.0.7",
|
|
42
|
+
"@types/node": "^22.7.0",
|
|
43
|
+
"eslint-formatter-compact": "9.0.1",
|
|
44
|
+
"typescript": "^5.5.4"
|
|
45
|
+
},
|
|
46
|
+
"engines": {
|
|
47
|
+
"bun": ">=1.1.0",
|
|
48
|
+
"node": ">=18.0.0"
|
|
49
|
+
},
|
|
50
|
+
"keywords": [
|
|
51
|
+
"ai",
|
|
52
|
+
"agent",
|
|
53
|
+
"cli",
|
|
54
|
+
"mutagent",
|
|
55
|
+
"mastra",
|
|
56
|
+
"langchain",
|
|
57
|
+
"langgraph",
|
|
58
|
+
"vercel-ai",
|
|
59
|
+
"claude-code"
|
|
60
|
+
],
|
|
61
|
+
"author": "MutagenT Team",
|
|
62
|
+
"license": "MIT",
|
|
63
|
+
"repository": {
|
|
64
|
+
"type": "git",
|
|
65
|
+
"url": "https://github.com/mutagent/mutagent-monorepo",
|
|
66
|
+
"directory": "mutagent-cli"
|
|
67
|
+
},
|
|
68
|
+
"publishConfig": {
|
|
69
|
+
"registry": "https://registry.npmjs.org/",
|
|
70
|
+
"access": "public"
|
|
71
|
+
},
|
|
72
|
+
"files": [
|
|
73
|
+
"dist",
|
|
74
|
+
"README.md",
|
|
75
|
+
"LICENSE"
|
|
76
|
+
]
|
|
77
|
+
}
|