@akanjs/cli 1.0.0 → 1.0.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/README.md
CHANGED
|
@@ -6,7 +6,7 @@ The official command-line interface for the Akan.js ecosystem, providing powerfu
|
|
|
6
6
|
|
|
7
7
|
### Prerequisites
|
|
8
8
|
|
|
9
|
-
- Node.js >=
|
|
9
|
+
- Node.js >=20.x
|
|
10
10
|
- pnpm >=10.x
|
|
11
11
|
- docker
|
|
12
12
|
- (temporary) access permission to akan-team github organization
|
|
@@ -64,13 +64,11 @@ Complete workspace and project management:
|
|
|
64
64
|
Full-stack application development and deployment:
|
|
65
65
|
|
|
66
66
|
- **🔧 Application Management**
|
|
67
|
-
|
|
68
67
|
- `create-application` - Scaffold new applications with templates
|
|
69
68
|
- `remove-application` - Clean application removal
|
|
70
69
|
- `sync-application` - Synchronize application dependencies
|
|
71
70
|
|
|
72
71
|
- **🏗️ Build System**
|
|
73
|
-
|
|
74
72
|
- `build` - Complete application build
|
|
75
73
|
- `build-backend` - Server-side build optimization
|
|
76
74
|
- `build-frontend` - Client-side build with Next.js
|
|
@@ -79,7 +77,6 @@ Full-stack application development and deployment:
|
|
|
79
77
|
- `build-android` - Android native app compilation
|
|
80
78
|
|
|
81
79
|
- **🚀 Development Server**
|
|
82
|
-
|
|
83
80
|
- `start` - Full-stack development server
|
|
84
81
|
- `start-backend` - GraphQL backend server
|
|
85
82
|
- `start-frontend` - Next.js frontend server with Turbo support
|
|
@@ -88,7 +85,6 @@ Full-stack application development and deployment:
|
|
|
88
85
|
- `start-android` - Android emulator with live reload
|
|
89
86
|
|
|
90
87
|
- **📦 Release Management**
|
|
91
|
-
|
|
92
88
|
- `release-ios` - iOS App Store deployment
|
|
93
89
|
- `release-android` - Google Play deployment
|
|
94
90
|
- `release-source` - Source code release with versioning
|
|
@@ -104,7 +100,6 @@ Full-stack application development and deployment:
|
|
|
104
100
|
Modular library system for code reusability:
|
|
105
101
|
|
|
106
102
|
- **📦 Library Operations**
|
|
107
|
-
|
|
108
103
|
- `create-library` - Create new shared libraries
|
|
109
104
|
- `remove-library` - Clean library removal
|
|
110
105
|
- `sync-library` - Synchronize library dependencies
|
|
@@ -119,7 +114,6 @@ Modular library system for code reusability:
|
|
|
119
114
|
AI-powered module generation and management:
|
|
120
115
|
|
|
121
116
|
- **🤖 Smart Module Creation**
|
|
122
|
-
|
|
123
117
|
- `create-module` - Generate modules with AI assistance
|
|
124
118
|
- `create-scalar` - Create scalar data models
|
|
125
119
|
- `remove-module` - Module cleanup with dependency checks
|
|
@@ -141,12 +135,10 @@ Dynamic page scaffolding:
|
|
|
141
135
|
Seamless cloud services and AI integration:
|
|
142
136
|
|
|
143
137
|
- **🔐 Authentication**
|
|
144
|
-
|
|
145
138
|
- `login` / `logout` - Cloud service authentication
|
|
146
139
|
- User session and credential management
|
|
147
140
|
|
|
148
141
|
- **🤖 AI Development Assistant**
|
|
149
|
-
|
|
150
142
|
- `set-llm` / `reset-llm` - Configure AI language models
|
|
151
143
|
- `ask` - Interactive AI development assistance
|
|
152
144
|
|
|
@@ -244,9 +236,6 @@ akan set-llm
|
|
|
244
236
|
|
|
245
237
|
# Get AI development help
|
|
246
238
|
akan ask "How do I implement user authentication with JWT?"
|
|
247
|
-
|
|
248
|
-
# Deploy to cloud
|
|
249
|
-
akan deploy-akan
|
|
250
239
|
```
|
|
251
240
|
|
|
252
241
|
### Database Operations
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"type": "module",
|
|
3
3
|
"sourceType": "module",
|
|
4
4
|
"name": "@akanjs/cli",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.1",
|
|
6
6
|
"bin": {
|
|
7
7
|
"akan": "esm/index.js"
|
|
8
8
|
},
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
12
|
"homepage": "https://akanjs.com",
|
|
13
|
+
"license": "MIT",
|
|
13
14
|
"repository": {
|
|
14
15
|
"type": "git",
|
|
15
16
|
"url": "https://github.com/akan-team/akanjs.git",
|