@mulep/cli 0.2.14

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.
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env node
2
+
3
+ // src/prompts.ts
4
+ async function selectPreset() {
5
+ return "cli-first";
6
+ }
7
+ export {
8
+ selectPreset
9
+ };
10
+ //# sourceMappingURL=prompts-N6ZYOVSU.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/prompts.ts"],"sourcesContent":["import type { PresetName } from '@mulep/core';\n\nexport async function selectPreset(): Promise<PresetName> {\n // CLI-first is the only valid preset — no need to prompt\n return 'cli-first';\n}\n"],"mappings":";;;AAEA,eAAsB,eAAoC;AAExD,SAAO;AACT;","names":[]}
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@mulep/cli",
3
+ "version": "0.2.14",
4
+ "description": "CLI for Mule ESB AI development — multi-project workspace, DataWeave analysis, flow validation, and multi-model collaboration",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/speedboostco/mulep.git",
10
+ "directory": "packages/cli"
11
+ },
12
+ "homepage": "https://github.com/speedboostco/mulep#readme",
13
+ "bugs": "https://github.com/speedboostco/mulep/issues",
14
+ "keywords": ["ai", "cli", "code-review", "multi-model", "orchestration", "codex", "claude", "debate", "autofix"],
15
+ "engines": { "node": ">=20.0.0" },
16
+ "files": ["dist"],
17
+ "bin": {
18
+ "mulep": "./dist/index.js"
19
+ },
20
+ "publishConfig": { "access": "public" },
21
+ "scripts": {
22
+ "build": "tsup",
23
+ "dev": "tsup --watch",
24
+ "typecheck": "tsc --noEmit",
25
+ "clean": "rm -rf dist"
26
+ },
27
+ "dependencies": {
28
+ "@mulep/core": "^0.2.9",
29
+ "chalk": "^5.4.0",
30
+ "chokidar": "^5.0.0",
31
+ "commander": "^13.0.0",
32
+ "inquirer": "^12.0.0",
33
+ "ora": "^8.0.0",
34
+ "yaml": "^2.7.0"
35
+ },
36
+ "devDependencies": {
37
+ "@types/node": "^22.0.0",
38
+ "tsup": "^8.3.0",
39
+ "typescript": "^5.7.0"
40
+ }
41
+ }