-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.15 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "morphkit-cli",
"version": "0.2.4",
"description": "Semantic AI agent that converts TypeScript/React web apps to native SwiftUI iOS apps",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"bin": {
"morphkit": "./dist/index.js",
"morphkit-cli": "./dist/index.js",
"morphkit-mcp": "./dist/mcp/server.js"
},
"files": [
"dist",
"templates",
"README.md",
"LICENSE",
"CONTRIBUTING.md"
],
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target node",
"test": "bun test",
"typecheck": "tsc --noEmit",
"analyze": "bun run src/index.ts analyze",
"generate": "bun run src/index.ts generate",
"mcp": "bun run src/mcp/server.ts",
"lint": "eslint src/ test/ --ext .ts",
"prepublishOnly": "bun build src/index.ts --outdir dist --target node --minify"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.82.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"chalk": "^5.4.0",
"commander": "^14.0.3",
"fast-glob": "^3.3.0",
"openai": "^4.0.0",
"ora": "^9.3.0",
"simple-git": "^3.27.0",
"ts-morph": "^28.0.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.31.0",
"typescript": "^6.0.3"
},
"keywords": [
"typescript",
"swift",
"swiftui",
"ios",
"react",
"nextjs",
"react-to-ios",
"typescript-to-swift",
"code-generation",
"ai",
"ai-agent",
"llm-tools",
"mobile",
"claude-code",
"mcp",
"ai-assistant",
"model-context-protocol",
"supabase",
"xcode"
],
"license": "MIT",
"author": "AshlrAI <hello@ashlr.ai>",
"repository": {
"type": "git",
"url": "https://github.com/ashlrai/morphkit.git"
},
"homepage": "https://morphkit.dev",
"bugs": "https://github.com/ashlrai/morphkit/issues",
"engines": {
"node": ">=18.0.0"
}
}