morphkit-cli 0.1.0 → 0.2.1
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/CONTRIBUTING.md +145 -0
- package/README.md +321 -20
- package/dist/index.js +1167 -381
- package/dist/mcp/server.js +289704 -0
- package/package.json +31 -8
package/package.json
CHANGED
|
@@ -1,16 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "morphkit-cli",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Semantic AI agent that converts TypeScript/React web apps to native SwiftUI iOS apps",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"import": "./dist/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
6
14
|
"bin": {
|
|
7
|
-
"morphkit": "./dist/index.js"
|
|
15
|
+
"morphkit": "./dist/index.js",
|
|
16
|
+
"morphkit-cli": "./dist/index.js",
|
|
17
|
+
"morphkit-mcp": "./dist/mcp/server.js"
|
|
8
18
|
},
|
|
9
19
|
"files": [
|
|
10
20
|
"dist",
|
|
11
21
|
"templates",
|
|
12
22
|
"README.md",
|
|
13
|
-
"LICENSE"
|
|
23
|
+
"LICENSE",
|
|
24
|
+
"CONTRIBUTING.md"
|
|
14
25
|
],
|
|
15
26
|
"scripts": {
|
|
16
27
|
"dev": "bun run src/index.ts",
|
|
@@ -19,20 +30,28 @@
|
|
|
19
30
|
"typecheck": "tsc --noEmit",
|
|
20
31
|
"analyze": "bun run src/index.ts analyze",
|
|
21
32
|
"generate": "bun run src/index.ts generate",
|
|
33
|
+
"mcp": "bun run src/mcp/server.ts",
|
|
34
|
+
"lint": "eslint src/ test/ --ext .ts",
|
|
22
35
|
"prepublishOnly": "bun build src/index.ts --outdir dist --target node --minify"
|
|
23
36
|
},
|
|
24
37
|
"dependencies": {
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"commander": "^13.0.0",
|
|
38
|
+
"@anthropic-ai/sdk": "^0.80.0",
|
|
39
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
28
40
|
"chalk": "^5.4.0",
|
|
41
|
+
"commander": "^13.0.0",
|
|
42
|
+
"fast-glob": "^3.3.0",
|
|
43
|
+
"openai": "^4.0.0",
|
|
29
44
|
"ora": "^8.0.0",
|
|
30
45
|
"simple-git": "^3.27.0",
|
|
31
|
-
"
|
|
46
|
+
"ts-morph": "^24.0.0",
|
|
32
47
|
"zod": "^3.24.0"
|
|
33
48
|
},
|
|
34
49
|
"devDependencies": {
|
|
35
50
|
"@types/bun": "latest",
|
|
51
|
+
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
52
|
+
"@typescript-eslint/parser": "^8.0.0",
|
|
53
|
+
"eslint": "^8.57.0",
|
|
54
|
+
"eslint-plugin-import": "^2.31.0",
|
|
36
55
|
"typescript": "^5.7.0"
|
|
37
56
|
},
|
|
38
57
|
"keywords": [
|
|
@@ -44,7 +63,11 @@
|
|
|
44
63
|
"nextjs",
|
|
45
64
|
"code-generation",
|
|
46
65
|
"ai",
|
|
47
|
-
"mobile"
|
|
66
|
+
"mobile",
|
|
67
|
+
"claude-code",
|
|
68
|
+
"mcp",
|
|
69
|
+
"ai-assistant",
|
|
70
|
+
"model-context-protocol"
|
|
48
71
|
],
|
|
49
72
|
"license": "MIT",
|
|
50
73
|
"author": "AshlrAI <hello@ashlr.ai>",
|