nextjs-cms-kit 0.5.7 → 0.5.9

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.
Files changed (1) hide show
  1. package/package.json +5 -4
package/package.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "name": "nextjs-cms-kit",
3
3
  "private": false,
4
- "version": "0.5.7",
5
- "type": "module",
4
+ "version": "0.5.9",
6
5
  "bin": {
7
6
  "nextjs-cms-kit": "./dist/index.js"
8
7
  },
@@ -28,13 +27,14 @@
28
27
  "glob": "^11.0.3",
29
28
  "mysql2": "^3.12.0",
30
29
  "zod": "4.1.12",
31
- "nextjs-cms": "0.5.7"
30
+ "nextjs-cms": "0.5.9"
32
31
  },
33
32
  "devDependencies": {
34
33
  "@types/bcrypt": "^6.0.0",
35
34
  "drizzle-kit": "^0.31.5",
36
35
  "eslint": "^9.12.0",
37
36
  "prettier": "^3.3.3",
37
+ "recast": "^0.23.11",
38
38
  "tsup": "^8.3.6",
39
39
  "tsx": "^4.20.6",
40
40
  "typescript": "^5.9.2",
@@ -44,9 +44,10 @@
44
44
  },
45
45
  "prettier": "@lzcms/prettier-config",
46
46
  "scripts": {
47
- "build": "tsc",
47
+ "build": "tsc && pnpm fix-imports",
48
48
  "clean": "git clean -xdf .cache .turbo dist node_modules",
49
49
  "dev": "tsc",
50
+ "fix-imports": "tsx scripts/fix-imports.ts",
50
51
  "format": "prettier --check . --ignore-path ../../.gitignore",
51
52
  "lint": "eslint",
52
53
  "typecheck": "tsc --noEmit --emitDeclarationOnly false",