katax-cli 1.1.1 → 1.1.3

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.
@@ -387,7 +387,7 @@ async function createProjectStructure(projectPath, config, generateJwtSecrets) {
387
387
  dotenv: '^16.3.1',
388
388
  pino: '^8.17.2',
389
389
  'pino-pretty': '^10.3.1',
390
- ...(config.validation === 'katax-core' && { 'katax-core': '^1.1.0' }),
390
+ ...(config.validation === 'katax-core' && { 'katax-core': '^1.5.0' }),
391
391
  ...(config.authentication === 'jwt' && {
392
392
  jsonwebtoken: '^9.0.2',
393
393
  bcrypt: '^5.1.1'
@@ -248,7 +248,7 @@ export class ProjectStructureGenerator {
248
248
  dotenv: '^16.3.1',
249
249
  pino: '^8.17.2',
250
250
  'pino-pretty': '^10.3.1',
251
- ...(this.config.validation === 'katax-core' && { 'katax-core': '^1.1.0' }),
251
+ ...(this.config.validation === 'katax-core' && { 'katax-core': '^1.5.0' }),
252
252
  ...(this.config.authentication === 'jwt' && {
253
253
  jsonwebtoken: '^9.0.2',
254
254
  bcrypt: '^5.1.1'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "katax-cli",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "CLI tool to generate Express APIs with TypeScript and katax-core validation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -52,7 +52,6 @@
52
52
  "execa": "^9.5.2",
53
53
  "fs-extra": "^11.2.0",
54
54
  "inquirer": "^12.3.0",
55
- "katax-core": "^1.1.0",
56
55
  "ora": "^8.1.1",
57
56
  "typescript": "^5.7.2"
58
57
  },