-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.42 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
{
"name": "kappmaker",
"version": "1.26.1",
"description": "CLI the KAppMaker AI agent drives to create, configure, build and ship Kotlin Multiplatform apps for Android and iOS. Part of KAppMaker AI, the always on machine that builds your app while you sleep.",
"homepage": "https://kappmaker.com",
"repository": {
"type": "git",
"url": "git+https://github.com/KAppMaker/KAppMaker-CLI.git"
},
"keywords": [
"kotlin-multiplatform",
"compose-multiplatform",
"kmp",
"android",
"ios",
"claude-code",
"ai-agent",
"app-builder",
"always-on",
"fastlane",
"app-store-connect",
"google-play",
"cli"
],
"type": "module",
"bin": {
"kappmaker": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && cp src/templates/Fastfile.txt src/templates/ios-ci-workflow.yml src/templates/ios-ci-lane.rb dist/templates/",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test:ppp": "tsx src/services/ppp-pricing.service.test.ts",
"test:ios-ci": "tsx src/commands/ios-ci.test.ts"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"execa": "^9.5.2",
"fs-extra": "^11.3.0",
"ora": "^8.2.0",
"sharp": "^0.35.3"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.13.10",
"tsx": "^4.22.4",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=20"
}
}