kmcom-nuxt-layers 1.6.48 → 1.7.2

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.
@@ -13,20 +13,11 @@
13
13
  "preview": "nuxt preview .playground"
14
14
  },
15
15
  "devDependencies": {
16
- "@nuxt/content": "^3.12.0",
17
- "nuxt-studio": "^1.2.0"
16
+ "@nuxt/content": "^3.14.0"
18
17
  },
19
18
  "dependencies": {
20
- "better-sqlite3": "^12.6.2",
19
+ "better-sqlite3": "^12.10.0",
21
20
  "zod": "^4.3.6",
22
21
  "zod-to-json-schema": "^3.25.1"
23
- },
24
- "peerDependencies": {
25
- "nuxt-studio": "^1.2.0"
26
- },
27
- "peerDependenciesMeta": {
28
- "nuxt-studio": {
29
- "optional": true
30
- }
31
22
  }
32
23
  }
@@ -42,7 +42,10 @@ export default defineNuxtConfig({
42
42
  compatibilityDate: '2026-01-24',
43
43
 
44
44
  typescript: {
45
- typeCheck: true,
45
+ // vite-plugin-checker@0.14.1 bundles TypeScript 6 which crashes on Nuxt's
46
+ // generated tsconfig.shared.json (noEmit:true + getFirstProjectOutput = Debug.fail).
47
+ // Disable dev typecheck; use `pnpm typecheck` or IDE (Volar) for type checking.
48
+ typeCheck: false,
46
49
  strict: true,
47
50
  },
48
51
 
@@ -70,24 +73,10 @@ export default defineNuxtConfig({
70
73
  },
71
74
 
72
75
  // PWA configuration (only applied when module is loaded in production)
73
- // pwa:
74
- // process.env.NODE_ENV === 'production'
75
- // ? {
76
- // registerType: 'autoUpdate',
77
- // manifest: {
78
- // name: 'Core Layer App',
79
- // short_name: 'Core Layer',
80
- // description: 'Foundation layer for Nuxt applications',
81
- // theme_color: '#ffffff',
82
- // background_color: '#ffffff',
83
- // display: 'standalone',
84
- // start_url: '/',
85
- // },
86
- // workbox: {
87
- // navigateFallback: '/',
88
- // globPatterns: ['**/*.{js,css,html}'],
89
- // globIgnores: ['**/node_modules/**/*'],
90
- // },
91
- // }
92
- // : undefined,
76
+ pwa: {
77
+ workbox: {
78
+ globPatterns: ['**/*.{js,css,html,ico,png,svg,webp,woff,woff2}'],
79
+ globIgnores: ['**/node_modules/**/*', 'sw.js', 'workbox-*.js'],
80
+ },
81
+ },
93
82
  })
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "extends": "../../apps/playground/tsconfig.json",
3
3
  "compilerOptions": {
4
- "strict": true,
5
- "ignoreDeprecations": "6.0"
4
+ "strict": true
6
5
  },
7
6
  "exclude": ["node_modules"]
8
7
  }
@@ -14,6 +14,6 @@
14
14
  "dependencies": {
15
15
  "hookable": "^5.5.3",
16
16
  "resend": "^4.0.0",
17
- "zod": "^3.24.2"
17
+ "zod": "^4.4.3"
18
18
  }
19
19
  }
@@ -11,8 +11,8 @@
11
11
  "preview": "nuxt preview .playground"
12
12
  },
13
13
  "dependencies": {
14
- "gsap": "^3.12.7",
15
- "locomotive-scroll": "^5.0.0",
14
+ "gsap": "^3.15.0",
15
+ "locomotive-scroll": "^5.0.1",
16
16
  "v-gsap-nuxt": "latest"
17
17
  }
18
18
  }
@@ -7,15 +7,15 @@
7
7
  "typecheck": "vue-tsc --noEmit -p ../../tsconfig.typecheck.json"
8
8
  },
9
9
  "dependencies": {
10
- "@tresjs/cientos": "^5.2.5",
11
- "@tresjs/core": "^5.3.3",
12
- "@tresjs/nuxt": "^5.1.7",
13
- "@tresjs/post-processing": "^3.2.5",
14
- "@vueuse/core": "^13.1.0",
15
- "three": "^0.182.0"
10
+ "@tresjs/cientos": "^5.7.2",
11
+ "@tresjs/core": "^5.8.1",
12
+ "@tresjs/nuxt": "^5.6.1",
13
+ "@tresjs/post-processing": "^3.7.2",
14
+ "@vueuse/core": "^14.3.0",
15
+ "three": "^0.184.0"
16
16
  },
17
17
  "devDependencies": {
18
- "@types/three": "^0.184.0",
19
- "vite": "^7.0.0"
18
+ "@types/three": "^0.184.1",
19
+ "vite": "^8.0.16"
20
20
  }
21
21
  }
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "extends": "../../apps/playground/tsconfig.json",
3
3
  "compilerOptions": {
4
- "strict": true,
5
- "ignoreDeprecations": "6.0"
4
+ "strict": true
6
5
  },
7
6
  "exclude": ["node_modules"]
8
7
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "kmcom-nuxt-layers",
3
3
  "private": false,
4
- "version": "1.6.48",
4
+ "version": "1.7.2",
5
5
  "description": "Composable Nuxt 4 layers for building scalable Vue applications",
6
6
  "exports": {
7
7
  "./layers/core": "./layers/core/nuxt.config.ts",
@@ -36,26 +36,25 @@
36
36
  "packages/*"
37
37
  ],
38
38
  "peerDependencies": {
39
- "@nuxt/content": "^3.12.0",
39
+ "@nuxt/content": "^3.14.0",
40
40
  "@nuxt/eslint": "^1.15.2",
41
41
  "@nuxt/image": "^2.0.0",
42
- "@nuxt/ui": "^4.5.1",
42
+ "@nuxt/ui": "^4.8.1",
43
43
  "@nuxtjs/device": "^4.0.0",
44
- "@tresjs/cientos": "^5.4.0",
45
- "@tresjs/core": "^5.5.0",
46
- "@tresjs/nuxt": "^5.3.0",
47
- "@tresjs/post-processing": "^3.4.0",
44
+ "@tresjs/cientos": "^5.7.2",
45
+ "@tresjs/core": "^5.8.1",
46
+ "@tresjs/nuxt": "^5.6.1",
47
+ "@tresjs/post-processing": "^3.7.2",
48
48
  "@vite-pwa/nuxt": "^1.1.1",
49
49
  "@vueuse/nuxt": "^14.3.0",
50
- "better-sqlite3": "^12.6.2",
51
- "gsap": "^3.14.2",
50
+ "better-sqlite3": "^12.10.0",
51
+ "gsap": "^3.15.0",
52
52
  "locomotive-scroll": "^5.0.1",
53
- "nuxt": "^4.4.2",
54
- "nuxt-studio": "^1.4.0",
53
+ "nuxt": "^4.4.7",
55
54
  "pinia": "^3.0.4",
56
55
  "tailwindcss": "^4.3.0",
57
- "three": ">=0.183.0",
58
- "v-gsap-nuxt": ">=1.0.0",
56
+ "three": ">=0.184.0",
57
+ "v-gsap-nuxt": ">=1.5.12",
59
58
  "zod": "^4.4.3"
60
59
  },
61
60
  "peerDependenciesMeta": {
@@ -108,23 +107,24 @@
108
107
  "devDependencies": {
109
108
  "@commitlint/cli": "^21.0.2",
110
109
  "@commitlint/config-conventional": "^21.0.2",
111
- "@culur/config-stylelint": "^1.7.0",
110
+ "@culur/config-stylelint": "^1.7.1",
112
111
  "@eslint/json": "^1.2.0",
113
112
  "@eslint/markdown": "^8.0.2",
114
113
  "@ianvs/prettier-plugin-sort-imports": "^4.7.1",
115
- "@iconify-json/lucide": "^1.2.110",
116
- "@netlify/nuxt": "0.3.6",
114
+ "@iconify-json/lucide": "^1.2.111",
115
+ "@netlify/nuxt": "0.3.7",
117
116
  "@nuxt/eslint": "^1.15.2",
118
117
  "@nuxt/fonts": "^0.14.0",
119
118
  "@nuxt/image": "^2.0.0",
120
119
  "@nuxt/ui": "latest",
121
120
  "@nuxtjs/device": "^4.0.0",
121
+ "@oxc-parser/binding-darwin-arm64": "^0.134.0",
122
122
  "@perplex-digital/stylelint-config": "^17.4.0",
123
123
  "@pinia/nuxt": "^0.11.3",
124
- "@types/node": "^20",
124
+ "@types/node": "^25.9.1",
125
125
  "@types/three": "^0.184.1",
126
- "@typescript-eslint/eslint-plugin": "^8.59.4",
127
- "@typescript-eslint/parser": "^8.59.4",
126
+ "@typescript-eslint/eslint-plugin": "^8.60.1",
127
+ "@typescript-eslint/parser": "^8.60.1",
128
128
  "@vue/eslint-config-typescript": "^14.7.0",
129
129
  "@vueuse/core": "^14.3.0",
130
130
  "@vueuse/nuxt": "^14.3.0",
@@ -133,7 +133,7 @@
133
133
  "changesets": "^1.0.2",
134
134
  "cypress": "^15.16.0",
135
135
  "depcheck": "^1.4.7",
136
- "eslint": "^10.4.0",
136
+ "eslint": "^10.4.1",
137
137
  "eslint-plugin-compat": "^7.0.2",
138
138
  "eslint-plugin-glsl": "0.0.0-wip",
139
139
  "eslint-plugin-pnpm": "^1.6.1",
@@ -143,7 +143,7 @@
143
143
  "eslint-plugin-vue": "^10.9.1",
144
144
  "netlify-cli": "^26.1.0",
145
145
  "npm-check-updates": "^22.2.1",
146
- "nuxt": "^4.4.6",
146
+ "nuxt": "^4.4.7",
147
147
  "pinia": "^3.0.4",
148
148
  "playwright": "^1.60.0",
149
149
  "postcss-html": "^1.8.1",
@@ -162,11 +162,11 @@
162
162
  "stylelint-prettier": "^5.0.3",
163
163
  "tailwindcss": "^4.3.0",
164
164
  "turbo": "^2.9.16",
165
- "typescript": "^5",
165
+ "typescript": "^6",
166
166
  "vite-plugin-checker": "^0.14.1",
167
167
  "vitest": "^4.1.7",
168
168
  "vue": "latest",
169
- "vue-tsc": "3.3.2",
169
+ "vue-tsc": "3.3.3",
170
170
  "zod": "^4.4.3",
171
171
  "zod-to-json-schema": "^3.25.2"
172
172
  },
@@ -181,7 +181,11 @@
181
181
  "skills": "^1.5.9"
182
182
  },
183
183
  "engines": {
184
- "node": ">=20 <21"
184
+ "node": ">=22 <23"
185
+ },
186
+ "volta": {
187
+ "node": "22.22.2",
188
+ "pnpm": "11.5.1"
185
189
  },
186
190
  "scripts": {
187
191
  "dev": "pnpm -F playground dev",
@@ -194,7 +198,7 @@
194
198
  "lint": "turbo run lint",
195
199
  "typecheck": "turbo run typecheck",
196
200
  "clean": "pnpm -r exec rm -rf node_modules .nuxt .output .data && pnpm store prune && pnpm install",
197
- "cleancache": "pnpm store prune && pnpm store status",
201
+ "cleancache": "pnpm store prune --force",
198
202
  "update": "ncu -i",
199
203
  "nuxtupdate": "npx nuxi@latest upgrade --dedupe --force",
200
204
  "nuxiupgrade": "npx nuxi upgrade",