@meltstudio/meltctl 5.0.1 → 5.0.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/index.js +52807 -3172
- package/package.json +10 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meltstudio/meltctl",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.3",
|
|
4
4
|
"description": "AI-first development tooling for Melt teams — companion CLI for the org-distributed Claude Code dev skills",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -45,30 +45,29 @@
|
|
|
45
45
|
],
|
|
46
46
|
"author": "Melt Studio",
|
|
47
47
|
"license": "UNLICENSED",
|
|
48
|
-
"
|
|
48
|
+
"comment:deps": "The CLI's runtime deps are bundled into dist/index.js by tsup (noExternal), so the published package has ZERO runtime dependencies. They live in devDependencies — required at build time, never installed on a user's machine.",
|
|
49
|
+
"devDependencies": {
|
|
49
50
|
"@commander-js/extra-typings": "^14",
|
|
50
51
|
"@inquirer/prompts": "^8.2.1",
|
|
51
|
-
"@modelcontextprotocol/sdk": "^1.18.0",
|
|
52
|
-
"chalk": "^5.4.1",
|
|
53
|
-
"commander": "^14.0.0",
|
|
54
|
-
"fs-extra": "^11.2.0",
|
|
55
|
-
"gradient-string": "^3.0.0",
|
|
56
|
-
"zod": "^4.3.6"
|
|
57
|
-
},
|
|
58
|
-
"devDependencies": {
|
|
59
52
|
"@meltstudio/meltctl-mcp": "*",
|
|
60
53
|
"@meltstudio/meltctl-sdk": "*",
|
|
54
|
+
"@modelcontextprotocol/sdk": "^1.18.0",
|
|
61
55
|
"@types/fs-extra": "^11.0.4",
|
|
62
56
|
"@types/node": "^25.6.2",
|
|
63
57
|
"@typescript-eslint/eslint-plugin": "^8.19.0",
|
|
64
58
|
"@typescript-eslint/parser": "^8.19.0",
|
|
59
|
+
"chalk": "^5.4.1",
|
|
60
|
+
"commander": "^14.0.0",
|
|
65
61
|
"eslint": "^9.17.0",
|
|
66
62
|
"eslint-config-prettier": "^10.1.8",
|
|
67
63
|
"eslint-plugin-prettier": "^5.2.1",
|
|
64
|
+
"fs-extra": "^11.2.0",
|
|
65
|
+
"gradient-string": "^3.0.0",
|
|
68
66
|
"prettier": "^3.8",
|
|
69
67
|
"tsup": "^8.5.1",
|
|
70
68
|
"tsx": "^4.19.5",
|
|
71
|
-
"typescript": "^5.7.3"
|
|
69
|
+
"typescript": "^5.7.3",
|
|
70
|
+
"zod": "^4.3.6"
|
|
72
71
|
},
|
|
73
72
|
"engines": {
|
|
74
73
|
"node": ">=20.0.0"
|