@agility-luhn/cli 1.10.0 → 1.11.0
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/CHANGELOG.md +2 -0
- package/README.md +34 -438
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
## [1.11.0](https://github.com/flaviorafaelo-agility/luhn-workspace/compare/cli-v1.10.0...cli-v1.11.0) (2026-07-08)
|
|
2
|
+
|
|
1
3
|
## [1.10.0](https://github.com/flaviorafaelo-agility/luhn-workspace/compare/cli-v1.9.0...cli-v1.10.0) (2026-07-08)
|
|
2
4
|
|
|
3
5
|
## [1.9.0](https://github.com/flaviorafaelo-agility/luhn-workspace/compare/cli-v1.8.0...cli-v1.9.0) (2026-07-08)
|
package/README.md
CHANGED
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
# LUHN CLI
|
|
2
2
|
|
|
3
|
-
Official Command-Line Interface for the LUHN Framework - A modern
|
|
3
|
+
Official Command-Line Interface for the LUHN Framework - A modern framework for building scalable applications with type-safe database operations and automatic code generation.
|
|
4
4
|
|
|
5
5
|
[](https://badge.fury.io/js/%40agility-luhn%2Fcli)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
7
|
|
|
8
8
|
## Features
|
|
9
9
|
|
|
10
|
-
✨ **Project Initialization** - Bootstrap a new LUHN project with interactive setup
|
|
11
|
-
🏗️ **Compilation** - Transform DSL files into TypeScript
|
|
12
|
-
📦 **Module Discovery** - List all modules, entities, and their attributes
|
|
13
|
-
🗄️ **Database Management** - Migrate, sync, and introspect databases
|
|
14
|
-
🚀 **
|
|
15
|
-
📝 **Type Safety** - Full TypeScript support with auto-generated types
|
|
16
|
-
🔌 **OData Filtering** - Built-in OData v4 query support
|
|
10
|
+
- ✨ **Project Initialization** - Bootstrap a new LUHN project with interactive setup
|
|
11
|
+
- 🏗️ **Compilation** - Transform DSL files into TypeScript and database schemas
|
|
12
|
+
- 📦 **Module Discovery** - List all modules, entities, and their attributes
|
|
13
|
+
- 🗄️ **Database Management** - Migrate, sync, and introspect databases
|
|
14
|
+
- 🚀 **Development Server** - Start your application server with hot-reload support
|
|
17
15
|
|
|
18
16
|
## Installation
|
|
19
17
|
|
|
@@ -21,9 +19,7 @@ Install LUHN CLI globally:
|
|
|
21
19
|
|
|
22
20
|
```bash
|
|
23
21
|
npm install -g @agility-luhn/cli
|
|
24
|
-
# or
|
|
25
22
|
pnpm add -g @agility-luhn/cli
|
|
26
|
-
# or
|
|
27
23
|
yarn global add @agility-luhn/cli
|
|
28
24
|
```
|
|
29
25
|
|
|
@@ -43,49 +39,11 @@ luhn init
|
|
|
43
39
|
luhn create
|
|
44
40
|
```
|
|
45
41
|
|
|
46
|
-
|
|
47
|
-
- Project name
|
|
48
|
-
- Description
|
|
49
|
-
- Package manager selection
|
|
50
|
-
- Initial template selection
|
|
51
|
-
|
|
52
|
-
```
|
|
53
|
-
$ luhn init
|
|
54
|
-
|
|
55
|
-
_ _ _ _ _ _
|
|
56
|
-
| | | | | | | | | | | |
|
|
57
|
-
| | _ _ ___| |_| | | |_| | | |
|
|
58
|
-
| | | | | |/ _ \ _ | | _ | | |
|
|
59
|
-
| |____| |_| | __/| | | | | | | | |_|
|
|
60
|
-
|_____|___/|_|___|_| |_| |_| |_| |_|_|
|
|
61
|
-
|
|
62
|
-
? Project name: my-app
|
|
63
|
-
? Description: My awesome LUHN application
|
|
64
|
-
? Use TypeScript: Yes
|
|
65
|
-
? Install dependencies: Yes
|
|
66
|
-
|
|
67
|
-
✅ Project created successfully!
|
|
68
|
-
```
|
|
42
|
+
The CLI will guide you through an interactive setup asking for project name, description, and package manager.
|
|
69
43
|
|
|
70
44
|
### 2. Define Your Business Logic
|
|
71
45
|
|
|
72
|
-
Create `.luhn` files in the `luhn/` directory
|
|
73
|
-
|
|
74
|
-
```luhn
|
|
75
|
-
# luhn/user/user.luhn
|
|
76
|
-
business "User" "User Management" {
|
|
77
|
-
id: uuid
|
|
78
|
-
name: string
|
|
79
|
-
email: string
|
|
80
|
-
createdAt: timestamp?
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
entity "UserProfile" "Extended user information" {
|
|
84
|
-
userId: uuid
|
|
85
|
-
bio: string
|
|
86
|
-
avatar: string?
|
|
87
|
-
}
|
|
88
|
-
```
|
|
46
|
+
Create `.luhn` files in the `luhn/` directory to define your entities and services.
|
|
89
47
|
|
|
90
48
|
### 3. Compile Your Project
|
|
91
49
|
|
|
@@ -93,45 +51,32 @@ entity "UserProfile" "Extended user information" {
|
|
|
93
51
|
luhn compile
|
|
94
52
|
```
|
|
95
53
|
|
|
96
|
-
|
|
97
|
-
- TypeScript types and interfaces
|
|
98
|
-
- Database migration files
|
|
99
|
-
- OpenAPI/Swagger definitions
|
|
100
|
-
- SQL schemas
|
|
101
|
-
- Runtime handlers
|
|
54
|
+
Generates TypeScript types, database migrations, and schema files.
|
|
102
55
|
|
|
103
56
|
### 4. Manage Your Database
|
|
104
57
|
|
|
105
58
|
```bash
|
|
106
|
-
#
|
|
107
|
-
luhn db
|
|
108
|
-
|
|
109
|
-
# Sync with current schema
|
|
110
|
-
luhn db sync
|
|
111
|
-
|
|
112
|
-
# Introspect existing database
|
|
113
|
-
luhn db introspect
|
|
59
|
+
luhn db migrate # Apply pending migrations
|
|
60
|
+
luhn db sync # Sync schema with database
|
|
61
|
+
luhn db introspect # Inspect existing database
|
|
114
62
|
```
|
|
115
63
|
|
|
116
64
|
### 5. Start Development Server
|
|
117
65
|
|
|
118
66
|
```bash
|
|
119
|
-
luhn serve
|
|
120
|
-
#
|
|
121
|
-
luhn serve --watch
|
|
67
|
+
luhn serve # Start development server
|
|
68
|
+
luhn serve --watch # With file watching
|
|
122
69
|
```
|
|
123
70
|
|
|
124
|
-
Server runs on `http://localhost:3000` by default.
|
|
125
|
-
|
|
126
71
|
## Commands
|
|
127
72
|
|
|
128
73
|
### `luhn init` / `luhn create`
|
|
129
74
|
|
|
130
|
-
Initialize a new LUHN project
|
|
75
|
+
Initialize a new LUHN project.
|
|
131
76
|
|
|
132
77
|
```bash
|
|
133
78
|
luhn init [targetDir]
|
|
134
|
-
luhn create my-project
|
|
79
|
+
luhn create my-project
|
|
135
80
|
```
|
|
136
81
|
|
|
137
82
|
**Options:**
|
|
@@ -141,11 +86,10 @@ luhn create my-project # Create in specific directory
|
|
|
141
86
|
|
|
142
87
|
### `luhn compile`
|
|
143
88
|
|
|
144
|
-
Compile LUHN DSL files to artifacts.
|
|
89
|
+
Compile LUHN DSL files to artifacts (TypeScript, schemas, migrations).
|
|
145
90
|
|
|
146
91
|
```bash
|
|
147
92
|
luhn compile [sourceDir]
|
|
148
|
-
luhn compile ./luhn # Compile from specific directory
|
|
149
93
|
```
|
|
150
94
|
|
|
151
95
|
**Options:**
|
|
@@ -153,106 +97,34 @@ luhn compile ./luhn # Compile from specific directory
|
|
|
153
97
|
- `--watch` - Watch for changes and recompile
|
|
154
98
|
- `--strict` - Strict validation mode
|
|
155
99
|
|
|
156
|
-
**Generates:**
|
|
157
|
-
- TypeScript interfaces and types
|
|
158
|
-
- Database schemas
|
|
159
|
-
- API routes
|
|
160
|
-
- OpenAPI definitions
|
|
161
|
-
|
|
162
100
|
### `luhn list` / `luhn ls`
|
|
163
101
|
|
|
164
102
|
Discover and list all modules, entities, and their attributes.
|
|
165
103
|
|
|
166
104
|
```bash
|
|
167
|
-
luhn list
|
|
168
|
-
luhn
|
|
169
|
-
luhn list -m auth
|
|
170
|
-
luhn list -e User
|
|
171
|
-
luhn list --json
|
|
105
|
+
luhn list # List all modules
|
|
106
|
+
luhn list --full # Show all attributes
|
|
107
|
+
luhn list -m auth # Filter by module
|
|
108
|
+
luhn list -e User # Filter by entity
|
|
109
|
+
luhn list --json # JSON output
|
|
172
110
|
```
|
|
173
111
|
|
|
174
112
|
**Options:**
|
|
175
113
|
- `-m, --module <name>` - Filter by module name
|
|
176
|
-
- `-e, --entity <name>` - Filter by entity
|
|
114
|
+
- `-e, --entity <name>` - Filter by entity name
|
|
177
115
|
- `-f, --full` - Show complete attribute details
|
|
178
|
-
- `--json` - Output as JSON
|
|
179
|
-
|
|
180
|
-
**Examples:**
|
|
181
|
-
|
|
182
|
-
```bash
|
|
183
|
-
# List all modules in project
|
|
184
|
-
$ luhn list
|
|
185
|
-
|
|
186
|
-
_ _ _ _ _ _
|
|
187
|
-
| | | | | | | | | | | |
|
|
188
|
-
| | _ _ ___| |_| | | |_| | | |
|
|
189
|
-
| | | | | |/ _ \ _ | | _ | | |
|
|
190
|
-
| |____| |_| | __/| | | | | | | | |_|
|
|
191
|
-
|_____|___/|_|___|_| |_| |_| |_| |_|_|
|
|
192
|
-
|
|
193
|
-
LUHN CLI: 1.9.0
|
|
194
|
-
Node: v22.14.0
|
|
195
|
-
Package Manager: pnpm 10.20.0
|
|
196
|
-
OS: win32 x64
|
|
197
|
-
|
|
198
|
-
📦 LUHN Project Structure
|
|
199
|
-
|
|
200
|
-
📂 Module: user
|
|
201
|
-
🎯 BUSINESS: User ("User Management")
|
|
202
|
-
└─ 5 attribute(s)
|
|
203
|
-
|
|
204
|
-
📂 Module: auth
|
|
205
|
-
🎯 BUSINESS: Session ("Session Management")
|
|
206
|
-
└─ 3 attribute(s)
|
|
207
|
-
|
|
208
|
-
✅ Summary:
|
|
209
|
-
Modules: 2
|
|
210
|
-
Entities: 2
|
|
211
|
-
Attributes: 8
|
|
212
|
-
|
|
213
|
-
💡 Tip: Use --full flag to see all attributes
|
|
214
|
-
|
|
215
|
-
# Show full details
|
|
216
|
-
$ luhn list --full
|
|
217
|
-
|
|
218
|
-
📂 Module: user
|
|
219
|
-
🎯 BUSINESS: User ("User Management")
|
|
220
|
-
✓ id: uuid
|
|
221
|
-
✓ name: string
|
|
222
|
-
✓ email: string
|
|
223
|
-
○ avatar: string
|
|
224
|
-
✓ createdAt: timestamp
|
|
225
|
-
|
|
226
|
-
# Filter by module
|
|
227
|
-
$ luhn list -m auth
|
|
228
|
-
|
|
229
|
-
# JSON output for scripting
|
|
230
|
-
$ luhn list --json
|
|
231
|
-
[
|
|
232
|
-
{
|
|
233
|
-
"module": "user",
|
|
234
|
-
"entities": [
|
|
235
|
-
{
|
|
236
|
-
"name": "User",
|
|
237
|
-
"type": "business",
|
|
238
|
-
"title": "User Management",
|
|
239
|
-
"attributeCount": 5
|
|
240
|
-
}
|
|
241
|
-
]
|
|
242
|
-
}
|
|
243
|
-
]
|
|
244
|
-
```
|
|
116
|
+
- `--json` - Output as JSON
|
|
245
117
|
|
|
246
118
|
### `luhn db`
|
|
247
119
|
|
|
248
|
-
|
|
120
|
+
Manage database operations.
|
|
249
121
|
|
|
250
122
|
```bash
|
|
251
|
-
luhn db migrate
|
|
252
|
-
luhn db sync
|
|
253
|
-
luhn db introspect
|
|
254
|
-
luhn db create
|
|
255
|
-
luhn db reset
|
|
123
|
+
luhn db migrate # Apply pending migrations
|
|
124
|
+
luhn db sync # Sync schema with database
|
|
125
|
+
luhn db introspect # Inspect existing database
|
|
126
|
+
luhn db create # Create database
|
|
127
|
+
luhn db reset # Reset database (development only)
|
|
256
128
|
```
|
|
257
129
|
|
|
258
130
|
**Options:**
|
|
@@ -265,7 +137,7 @@ luhn db reset # Reset database (development only)
|
|
|
265
137
|
Start the development server.
|
|
266
138
|
|
|
267
139
|
```bash
|
|
268
|
-
luhn serve
|
|
140
|
+
luhn serve
|
|
269
141
|
```
|
|
270
142
|
|
|
271
143
|
**Options:**
|
|
@@ -274,288 +146,12 @@ luhn serve [options]
|
|
|
274
146
|
- `--debug` - Run with debug logging
|
|
275
147
|
- `--no-reload` - Disable hot-reload
|
|
276
148
|
|
|
277
|
-
##
|
|
278
|
-
|
|
279
|
-
A typical LUHN project structure:
|
|
280
|
-
|
|
281
|
-
```
|
|
282
|
-
my-project/
|
|
283
|
-
├── luhn/ # DSL definitions
|
|
284
|
-
│ ├── user/
|
|
285
|
-
│ │ ├── user.luhn
|
|
286
|
-
│ │ └── profile.luhn
|
|
287
|
-
│ └── auth/
|
|
288
|
-
│ └── session.luhn
|
|
289
|
-
├── src/
|
|
290
|
-
│ ├── generated/ # Auto-generated files
|
|
291
|
-
│ │ ├── types/
|
|
292
|
-
│ │ ├── schema/
|
|
293
|
-
│ │ └── routes/
|
|
294
|
-
│ ├── handlers/ # Business logic
|
|
295
|
-
│ ├── middleware/ # Express/Fastify middleware
|
|
296
|
-
│ └── server.ts # Main server entry
|
|
297
|
-
├── db/ # Database files
|
|
298
|
-
│ ├── migrations/
|
|
299
|
-
│ └── seeds/
|
|
300
|
-
├── .env # Environment variables
|
|
301
|
-
├── package.json
|
|
302
|
-
├── tsconfig.json
|
|
303
|
-
└── README.md
|
|
304
|
-
```
|
|
305
|
-
|
|
306
|
-
## Configuration
|
|
307
|
-
|
|
308
|
-
### `.luhnrc.json` (Optional)
|
|
309
|
-
|
|
310
|
-
Configure LUHN behavior:
|
|
311
|
-
|
|
312
|
-
```json
|
|
313
|
-
{
|
|
314
|
-
"compiler": {
|
|
315
|
-
"outputDir": "src/generated",
|
|
316
|
-
"strict": true,
|
|
317
|
-
"generateOpenAPI": true
|
|
318
|
-
},
|
|
319
|
-
"database": {
|
|
320
|
-
"engine": "postgres",
|
|
321
|
-
"migrations": "db/migrations"
|
|
322
|
-
},
|
|
323
|
-
"server": {
|
|
324
|
-
"port": 3000,
|
|
325
|
-
"host": "localhost"
|
|
326
|
-
}
|
|
327
|
-
}
|
|
328
|
-
```
|
|
329
|
-
|
|
330
|
-
### Environment Variables
|
|
331
|
-
|
|
332
|
-
Create a `.env` file:
|
|
333
|
-
|
|
334
|
-
```env
|
|
335
|
-
# Database
|
|
336
|
-
DB_CONNECTION=postgresql://user:password@localhost:5432/myapp
|
|
337
|
-
|
|
338
|
-
# Server
|
|
339
|
-
PORT=3000
|
|
340
|
-
NODE_ENV=development
|
|
341
|
-
|
|
342
|
-
# Optional
|
|
343
|
-
DEBUG=luhn:*
|
|
344
|
-
LOG_LEVEL=info
|
|
345
|
-
```
|
|
346
|
-
|
|
347
|
-
## DSL Syntax
|
|
348
|
-
|
|
349
|
-
### Business Entity
|
|
350
|
-
|
|
351
|
-
```luhn
|
|
352
|
-
business "EntityName" "Description" {
|
|
353
|
-
fieldName: dataType
|
|
354
|
-
optionalField: dataType?
|
|
355
|
-
}
|
|
356
|
-
```
|
|
357
|
-
|
|
358
|
-
### Database Entity
|
|
359
|
-
|
|
360
|
-
```luhn
|
|
361
|
-
entity "EntityName" "Description" {
|
|
362
|
-
fieldName: dataType
|
|
363
|
-
}
|
|
364
|
-
```
|
|
365
|
-
|
|
366
|
-
### Service (API Handlers)
|
|
367
|
-
|
|
368
|
-
```luhn
|
|
369
|
-
service "ServiceName" "Description" {
|
|
370
|
-
methodName: dataType
|
|
371
|
-
}
|
|
372
|
-
```
|
|
373
|
-
|
|
374
|
-
### Supported Data Types
|
|
375
|
-
|
|
376
|
-
- `uuid` - UUID identifier
|
|
377
|
-
- `string` - Text
|
|
378
|
-
- `number` - Integer or decimal
|
|
379
|
-
- `boolean` - True/false
|
|
380
|
-
- `timestamp` - Date and time
|
|
381
|
-
- `json` - JSON object
|
|
382
|
-
- `text` - Long text
|
|
383
|
-
|
|
384
|
-
## Examples
|
|
385
|
-
|
|
386
|
-
### Create a User Management Module
|
|
387
|
-
|
|
388
|
-
**Step 1: Define the DSL**
|
|
389
|
-
|
|
390
|
-
```luhn
|
|
391
|
-
# luhn/user/user.luhn
|
|
392
|
-
business "User" "User Management" {
|
|
393
|
-
id: uuid
|
|
394
|
-
email: string
|
|
395
|
-
name: string
|
|
396
|
-
role: string
|
|
397
|
-
isActive: boolean
|
|
398
|
-
createdAt: timestamp?
|
|
399
|
-
updatedAt: timestamp?
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
entity "UserPreferences" "User settings" {
|
|
403
|
-
userId: uuid
|
|
404
|
-
theme: string?
|
|
405
|
-
language: string?
|
|
406
|
-
notifications: boolean
|
|
407
|
-
}
|
|
408
|
-
```
|
|
409
|
-
|
|
410
|
-
**Step 2: Compile**
|
|
411
|
-
|
|
412
|
-
```bash
|
|
413
|
-
luhn compile
|
|
414
|
-
```
|
|
415
|
-
|
|
416
|
-
**Step 3: Check generated files**
|
|
417
|
-
|
|
418
|
-
```bash
|
|
419
|
-
luhn list -m user --full
|
|
420
|
-
```
|
|
421
|
-
|
|
422
|
-
**Step 4: Create database migration**
|
|
423
|
-
|
|
424
|
-
```bash
|
|
425
|
-
luhn db migrate --name "create_user_tables"
|
|
426
|
-
```
|
|
427
|
-
|
|
428
|
-
**Step 5: Start development**
|
|
429
|
-
|
|
430
|
-
```bash
|
|
431
|
-
luhn serve --watch
|
|
432
|
-
```
|
|
433
|
-
|
|
434
|
-
### Export Project Structure
|
|
435
|
-
|
|
436
|
-
```bash
|
|
437
|
-
# Export to JSON file
|
|
438
|
-
luhn list --json > project-structure.json
|
|
439
|
-
|
|
440
|
-
# Filter specific module
|
|
441
|
-
luhn list -m auth --json > auth-module.json
|
|
442
|
-
|
|
443
|
-
# Use in documentation generation
|
|
444
|
-
luhn list --full --json | jq . > docs/structure.json
|
|
445
|
-
```
|
|
446
|
-
|
|
447
|
-
## Troubleshooting
|
|
448
|
-
|
|
449
|
-
### `No LUHN directory found`
|
|
450
|
-
|
|
451
|
-
**Problem:** Getting error when running `luhn list` or `luhn compile`
|
|
452
|
-
|
|
453
|
-
**Solution:** Make sure you're in a LUHN project directory. The CLI looks for:
|
|
454
|
-
- `./luhn` - Main directory
|
|
455
|
-
- `./src/luhn` - Nested structure
|
|
456
|
-
- `../luhn` - Parent directory
|
|
457
|
-
|
|
458
|
-
```bash
|
|
459
|
-
# Verify directory structure
|
|
460
|
-
ls -la luhn/
|
|
461
|
-
|
|
462
|
-
# Or create one
|
|
463
|
-
mkdir -p luhn
|
|
464
|
-
```
|
|
465
|
-
|
|
466
|
-
### `Failed to compile`
|
|
467
|
-
|
|
468
|
-
**Problem:** TypeScript compilation errors
|
|
469
|
-
|
|
470
|
-
**Solution:** Check your DSL syntax and try strict mode:
|
|
471
|
-
|
|
472
|
-
```bash
|
|
473
|
-
luhn compile --strict
|
|
474
|
-
```
|
|
475
|
-
|
|
476
|
-
### `Database connection error`
|
|
477
|
-
|
|
478
|
-
**Problem:** Cannot connect to database
|
|
479
|
-
|
|
480
|
-
**Solution:** Verify `.env` file:
|
|
481
|
-
|
|
482
|
-
```bash
|
|
483
|
-
# Check connection string
|
|
484
|
-
cat .env
|
|
485
|
-
|
|
486
|
-
# Test connection
|
|
487
|
-
luhn db migrate --dry-run
|
|
488
|
-
```
|
|
489
|
-
|
|
490
|
-
### Version mismatch
|
|
491
|
-
|
|
492
|
-
**Problem:** CLI version doesn't match package version
|
|
493
|
-
|
|
494
|
-
**Solution:** Update CLI:
|
|
495
|
-
|
|
496
|
-
```bash
|
|
497
|
-
npm install -g @agility-luhn/cli@latest
|
|
498
|
-
# or
|
|
499
|
-
pnpm add -g @agility-luhn/cli@latest
|
|
500
|
-
```
|
|
501
|
-
|
|
502
|
-
## Debugging
|
|
503
|
-
|
|
504
|
-
Enable debug logging:
|
|
505
|
-
|
|
506
|
-
```bash
|
|
507
|
-
DEBUG=luhn:* luhn compile
|
|
508
|
-
```
|
|
509
|
-
|
|
510
|
-
Or set environment variable:
|
|
511
|
-
|
|
512
|
-
```bash
|
|
513
|
-
export DEBUG=luhn:*
|
|
514
|
-
luhn serve
|
|
515
|
-
```
|
|
516
|
-
|
|
517
|
-
## Performance Tips
|
|
518
|
-
|
|
519
|
-
1. **Incremental Compilation** - Use watch mode during development
|
|
520
|
-
```bash
|
|
521
|
-
luhn compile --watch
|
|
522
|
-
```
|
|
523
|
-
|
|
524
|
-
2. **Database Caching** - Cache introspection results
|
|
525
|
-
```bash
|
|
526
|
-
luhn db introspect --cache
|
|
527
|
-
```
|
|
528
|
-
|
|
529
|
-
3. **Parallel Processing** - Enable for large projects
|
|
530
|
-
```bash
|
|
531
|
-
luhn compile --parallel
|
|
532
|
-
```
|
|
533
|
-
|
|
534
|
-
## Release Notes
|
|
535
|
-
|
|
536
|
-
See [CHANGELOG.md](./CHANGELOG.md) for version history and updates.
|
|
537
|
-
|
|
538
|
-
## Contributing
|
|
149
|
+
## License
|
|
539
150
|
|
|
540
|
-
|
|
151
|
+
MIT © [Agility Solutions](https://github.com/flaviorafaelo-agility)
|
|
541
152
|
|
|
542
153
|
## Support
|
|
543
154
|
|
|
544
155
|
- 📖 [Documentation](https://github.com/flaviorafaelo-agility/luhn-workspace)
|
|
545
|
-
- 🐛 [
|
|
156
|
+
- 🐛 [Issues](https://github.com/flaviorafaelo-agility/luhn-workspace/issues)
|
|
546
157
|
- 💬 [Discussions](https://github.com/flaviorafaelo-agility/luhn-workspace/discussions)
|
|
547
|
-
|
|
548
|
-
## License
|
|
549
|
-
|
|
550
|
-
MIT © [Agility Solutions](https://github.com/flaviorafaelo-agility)
|
|
551
|
-
|
|
552
|
-
## Related Packages
|
|
553
|
-
|
|
554
|
-
- **[@agility-luhn/compiler](https://www.npmjs.com/package/@agility-luhn/compiler)** - LUHN compiler core
|
|
555
|
-
- **[@agility-luhn/runtime](https://www.npmjs.com/package/@agility-luhn/runtime)** - Runtime utilities
|
|
556
|
-
- **[@agility-luhn/database](https://www.npmjs.com/package/@agility-luhn/database)** - Database layer
|
|
557
|
-
- **[@agility-luhn/database-postgres](https://www.npmjs.com/package/@agility-luhn/database-postgres)** - PostgreSQL adapter
|
|
558
|
-
|
|
559
|
-
---
|
|
560
|
-
|
|
561
|
-
**Made with ❤️ by [Agility Solutions](https://agilitysolutions.com.br)**
|