@trieb.work/nextjs-turbo-redis-cache 1.12.0 → 1.14.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/.github/workflows/ci.yml +11 -13
- package/.github/workflows/release.yml +68 -7
- package/CHANGELOG.md +28 -0
- package/README.md +29 -21
- package/dist/index.d.mts +8 -3
- package/dist/index.d.ts +8 -3
- package/dist/index.js +64 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +54 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -3
- package/playwright.config.ts +1 -1
- package/src/CacheComponentsHandler.ts +11 -5
- package/src/CachedHandler.ts +16 -2
- package/src/RedisStringsHandler.ts +4 -2
- package/src/utils/prefix.test.ts +115 -0
- package/src/utils/prefix.ts +44 -0
- package/test/cache-components/cache-components.integration.spec.ts +1 -1
- package/test/integration/build-id-prefix.integration.test.ts +102 -0
- package/test/integration/next-app-15-0-3/pnpm-lock.yaml +32 -1
- package/test/integration/next-app-15-3-2/pnpm-lock.yaml +33 -1
- package/test/integration/next-app-15-4-7/pnpm-lock.yaml +36 -1
- package/test/integration/next-app-16-0-3/pnpm-lock.yaml +37 -1
- package/test/integration/next-app-16-0-3/postcss.config.mjs +7 -7
- package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/package.json +3 -3
- package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/pnpm-lock.yaml +98 -55
- package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/postcss.config.mjs +7 -7
- package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/package.json +3 -3
- package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/pnpm-lock.yaml +98 -55
- package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/postcss.config.mjs +7 -7
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/README.md +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/eslint.config.mjs +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/next.config.ts +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/api/cached-static-fetch/route.ts +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/api/nested-fetch-in-api-route/revalidated-fetch/route.ts +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/api/revalidatePath/route.ts +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/api/revalidateTag/route.ts +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/api/revalidated-fetch/route.ts +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/api/uncached-fetch/route.ts +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/favicon.ico +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/globals.css +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/layout.tsx +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/cached-static-fetch/default--force-dynamic-page/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/cached-static-fetch/revalidate15--default-page/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/cached-static-fetch/revalidate15--force-dynamic-page/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/no-fetch/default-page/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/revalidated-fetch/default--force-dynamic-page/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/revalidated-fetch/revalidate15--default-page/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/revalidated-fetch/revalidate15--force-dynamic-page/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/uncached-fetch/default--force-dynamic-page/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/uncached-fetch/revalidate15--default-page/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/pages/uncached-fetch/revalidate15--force-dynamic-page/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/revalidation-interface.tsx +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/src/app/update-tag-test/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1 → next-app-16-2-3}/tsconfig.json +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/README.md +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/cache-handler.js +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/eslint.config.mjs +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/next.config.ts +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/public/file.svg +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/public/globe.svg +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/public/next.svg +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/public/vercel.svg +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/public/window.svg +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/api/cached-static-fetch/route.ts +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/api/cached-with-tag/route.ts +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/api/revalidate-tag/route.ts +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/api/revalidated-fetch/route.ts +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/cache-lab/cachelife-short/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/cache-lab/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/cache-lab/runtime-data-suspense/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/cache-lab/stale-while-revalidate/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/cache-lab/tag-invalidation/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/cache-lab/use-cache-nondeterministic/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/favicon.ico +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/globals.css +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/layout.tsx +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/revalidation-interface.tsx +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/src/app/update-tag-test/page.tsx +0 -0
- /package/test/integration/{next-app-16-1-1-cache-components → next-app-16-2-3-cache-components}/tsconfig.json +0 -0
|
@@ -10,10 +10,10 @@ importers:
|
|
|
10
10
|
dependencies:
|
|
11
11
|
'@trieb.work/nextjs-turbo-redis-cache':
|
|
12
12
|
specifier: file:../../../
|
|
13
|
-
version: file:../../..(next@16.
|
|
13
|
+
version: file:../../..(next@16.2.3(@babel/core@7.28.5)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(redis@4.7.0)
|
|
14
14
|
next:
|
|
15
|
-
specifier: 16.
|
|
16
|
-
version: 16.
|
|
15
|
+
specifier: 16.2.3
|
|
16
|
+
version: 16.2.3(@babel/core@7.28.5)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
|
|
17
17
|
react:
|
|
18
18
|
specifier: 19.2.0
|
|
19
19
|
version: 19.2.0
|
|
@@ -40,8 +40,8 @@ importers:
|
|
|
40
40
|
specifier: ^9
|
|
41
41
|
version: 9.39.1(jiti@2.6.1)
|
|
42
42
|
eslint-config-next:
|
|
43
|
-
specifier: 16.
|
|
44
|
-
version: 16.
|
|
43
|
+
specifier: 16.2.3
|
|
44
|
+
version: 16.2.3(@typescript-eslint/parser@8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)
|
|
45
45
|
tailwindcss:
|
|
46
46
|
specifier: ^4
|
|
47
47
|
version: 4.1.17
|
|
@@ -215,89 +215,105 @@ packages:
|
|
|
215
215
|
resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==}
|
|
216
216
|
cpu: [arm64]
|
|
217
217
|
os: [linux]
|
|
218
|
+
libc: [glibc]
|
|
218
219
|
|
|
219
220
|
'@img/sharp-libvips-linux-arm@1.2.4':
|
|
220
221
|
resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==}
|
|
221
222
|
cpu: [arm]
|
|
222
223
|
os: [linux]
|
|
224
|
+
libc: [glibc]
|
|
223
225
|
|
|
224
226
|
'@img/sharp-libvips-linux-ppc64@1.2.4':
|
|
225
227
|
resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==}
|
|
226
228
|
cpu: [ppc64]
|
|
227
229
|
os: [linux]
|
|
230
|
+
libc: [glibc]
|
|
228
231
|
|
|
229
232
|
'@img/sharp-libvips-linux-riscv64@1.2.4':
|
|
230
233
|
resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==}
|
|
231
234
|
cpu: [riscv64]
|
|
232
235
|
os: [linux]
|
|
236
|
+
libc: [glibc]
|
|
233
237
|
|
|
234
238
|
'@img/sharp-libvips-linux-s390x@1.2.4':
|
|
235
239
|
resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==}
|
|
236
240
|
cpu: [s390x]
|
|
237
241
|
os: [linux]
|
|
242
|
+
libc: [glibc]
|
|
238
243
|
|
|
239
244
|
'@img/sharp-libvips-linux-x64@1.2.4':
|
|
240
245
|
resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==}
|
|
241
246
|
cpu: [x64]
|
|
242
247
|
os: [linux]
|
|
248
|
+
libc: [glibc]
|
|
243
249
|
|
|
244
250
|
'@img/sharp-libvips-linuxmusl-arm64@1.2.4':
|
|
245
251
|
resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==}
|
|
246
252
|
cpu: [arm64]
|
|
247
253
|
os: [linux]
|
|
254
|
+
libc: [musl]
|
|
248
255
|
|
|
249
256
|
'@img/sharp-libvips-linuxmusl-x64@1.2.4':
|
|
250
257
|
resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==}
|
|
251
258
|
cpu: [x64]
|
|
252
259
|
os: [linux]
|
|
260
|
+
libc: [musl]
|
|
253
261
|
|
|
254
262
|
'@img/sharp-linux-arm64@0.34.5':
|
|
255
263
|
resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==}
|
|
256
264
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
257
265
|
cpu: [arm64]
|
|
258
266
|
os: [linux]
|
|
267
|
+
libc: [glibc]
|
|
259
268
|
|
|
260
269
|
'@img/sharp-linux-arm@0.34.5':
|
|
261
270
|
resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==}
|
|
262
271
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
263
272
|
cpu: [arm]
|
|
264
273
|
os: [linux]
|
|
274
|
+
libc: [glibc]
|
|
265
275
|
|
|
266
276
|
'@img/sharp-linux-ppc64@0.34.5':
|
|
267
277
|
resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==}
|
|
268
278
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
269
279
|
cpu: [ppc64]
|
|
270
280
|
os: [linux]
|
|
281
|
+
libc: [glibc]
|
|
271
282
|
|
|
272
283
|
'@img/sharp-linux-riscv64@0.34.5':
|
|
273
284
|
resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==}
|
|
274
285
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
275
286
|
cpu: [riscv64]
|
|
276
287
|
os: [linux]
|
|
288
|
+
libc: [glibc]
|
|
277
289
|
|
|
278
290
|
'@img/sharp-linux-s390x@0.34.5':
|
|
279
291
|
resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==}
|
|
280
292
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
281
293
|
cpu: [s390x]
|
|
282
294
|
os: [linux]
|
|
295
|
+
libc: [glibc]
|
|
283
296
|
|
|
284
297
|
'@img/sharp-linux-x64@0.34.5':
|
|
285
298
|
resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==}
|
|
286
299
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
287
300
|
cpu: [x64]
|
|
288
301
|
os: [linux]
|
|
302
|
+
libc: [glibc]
|
|
289
303
|
|
|
290
304
|
'@img/sharp-linuxmusl-arm64@0.34.5':
|
|
291
305
|
resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==}
|
|
292
306
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
293
307
|
cpu: [arm64]
|
|
294
308
|
os: [linux]
|
|
309
|
+
libc: [musl]
|
|
295
310
|
|
|
296
311
|
'@img/sharp-linuxmusl-x64@0.34.5':
|
|
297
312
|
resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==}
|
|
298
313
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
299
314
|
cpu: [x64]
|
|
300
315
|
os: [linux]
|
|
316
|
+
libc: [musl]
|
|
301
317
|
|
|
302
318
|
'@img/sharp-wasm32@0.34.5':
|
|
303
319
|
resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==}
|
|
@@ -341,56 +357,60 @@ packages:
|
|
|
341
357
|
'@napi-rs/wasm-runtime@0.2.12':
|
|
342
358
|
resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
|
|
343
359
|
|
|
344
|
-
'@next/env@16.
|
|
345
|
-
resolution: {integrity: sha512-
|
|
360
|
+
'@next/env@16.2.3':
|
|
361
|
+
resolution: {integrity: sha512-ZWXyj4uNu4GCWQw9cjRxWlbD+33mcDszIo9iQxFnBX3Wmgq9ulaSJcl6VhuWx5pCWqqD+9W6Wfz7N0lM5lYPMA==}
|
|
346
362
|
|
|
347
|
-
'@next/eslint-plugin-next@16.
|
|
348
|
-
resolution: {integrity: sha512-
|
|
363
|
+
'@next/eslint-plugin-next@16.2.3':
|
|
364
|
+
resolution: {integrity: sha512-nE/b9mht28XJxjTwKs/yk7w4XTaU3t40UHVAky6cjiijdP/SEy3hGsnQMPxmXPTpC7W4/97okm6fngKnvCqVaA==}
|
|
349
365
|
|
|
350
|
-
'@next/swc-darwin-arm64@16.
|
|
351
|
-
resolution: {integrity: sha512-
|
|
366
|
+
'@next/swc-darwin-arm64@16.2.3':
|
|
367
|
+
resolution: {integrity: sha512-u37KDKTKQ+OQLvY+z7SNXixwo4Q2/IAJFDzU1fYe66IbCE51aDSAzkNDkWmLN0yjTUh4BKBd+hb69jYn6qqqSg==}
|
|
352
368
|
engines: {node: '>= 10'}
|
|
353
369
|
cpu: [arm64]
|
|
354
370
|
os: [darwin]
|
|
355
371
|
|
|
356
|
-
'@next/swc-darwin-x64@16.
|
|
357
|
-
resolution: {integrity: sha512-
|
|
372
|
+
'@next/swc-darwin-x64@16.2.3':
|
|
373
|
+
resolution: {integrity: sha512-gHjL/qy6Q6CG3176FWbAKyKh9IfntKZTB3RY/YOJdDFpHGsUDXVH38U4mMNpHVGXmeYW4wj22dMp1lTfmu/bTQ==}
|
|
358
374
|
engines: {node: '>= 10'}
|
|
359
375
|
cpu: [x64]
|
|
360
376
|
os: [darwin]
|
|
361
377
|
|
|
362
|
-
'@next/swc-linux-arm64-gnu@16.
|
|
363
|
-
resolution: {integrity: sha512
|
|
378
|
+
'@next/swc-linux-arm64-gnu@16.2.3':
|
|
379
|
+
resolution: {integrity: sha512-U6vtblPtU/P14Y/b/n9ZY0GOxbbIhTFuaFR7F4/uMBidCi2nSdaOFhA0Go81L61Zd6527+yvuX44T4ksnf8T+Q==}
|
|
364
380
|
engines: {node: '>= 10'}
|
|
365
381
|
cpu: [arm64]
|
|
366
382
|
os: [linux]
|
|
383
|
+
libc: [glibc]
|
|
367
384
|
|
|
368
|
-
'@next/swc-linux-arm64-musl@16.
|
|
369
|
-
resolution: {integrity: sha512
|
|
385
|
+
'@next/swc-linux-arm64-musl@16.2.3':
|
|
386
|
+
resolution: {integrity: sha512-/YV0LgjHUmfhQpn9bVoGc4x4nan64pkhWR5wyEV8yCOfwwrH630KpvRg86olQHTwHIn1z59uh6JwKvHq1h4QEw==}
|
|
370
387
|
engines: {node: '>= 10'}
|
|
371
388
|
cpu: [arm64]
|
|
372
389
|
os: [linux]
|
|
390
|
+
libc: [musl]
|
|
373
391
|
|
|
374
|
-
'@next/swc-linux-x64-gnu@16.
|
|
375
|
-
resolution: {integrity: sha512
|
|
392
|
+
'@next/swc-linux-x64-gnu@16.2.3':
|
|
393
|
+
resolution: {integrity: sha512-/HiWEcp+WMZ7VajuiMEFGZ6cg0+aYZPqCJD3YJEfpVWQsKYSjXQG06vJP6F1rdA03COD9Fef4aODs3YxKx+RDQ==}
|
|
376
394
|
engines: {node: '>= 10'}
|
|
377
395
|
cpu: [x64]
|
|
378
396
|
os: [linux]
|
|
397
|
+
libc: [glibc]
|
|
379
398
|
|
|
380
|
-
'@next/swc-linux-x64-musl@16.
|
|
381
|
-
resolution: {integrity: sha512-
|
|
399
|
+
'@next/swc-linux-x64-musl@16.2.3':
|
|
400
|
+
resolution: {integrity: sha512-Kt44hGJfZSefebhk/7nIdivoDr3Ugp5+oNz9VvF3GUtfxutucUIHfIO0ZYO8QlOPDQloUVQn4NVC/9JvHRk9hw==}
|
|
382
401
|
engines: {node: '>= 10'}
|
|
383
402
|
cpu: [x64]
|
|
384
403
|
os: [linux]
|
|
404
|
+
libc: [musl]
|
|
385
405
|
|
|
386
|
-
'@next/swc-win32-arm64-msvc@16.
|
|
387
|
-
resolution: {integrity: sha512-
|
|
406
|
+
'@next/swc-win32-arm64-msvc@16.2.3':
|
|
407
|
+
resolution: {integrity: sha512-O2NZ9ie3Tq6xj5Z5CSwBT3+aWAMW2PIZ4egUi9MaWLkwaehgtB7YZjPm+UpcNpKOme0IQuqDcor7BsW6QBiQBw==}
|
|
388
408
|
engines: {node: '>= 10'}
|
|
389
409
|
cpu: [arm64]
|
|
390
410
|
os: [win32]
|
|
391
411
|
|
|
392
|
-
'@next/swc-win32-x64-msvc@16.
|
|
393
|
-
resolution: {integrity: sha512-
|
|
412
|
+
'@next/swc-win32-x64-msvc@16.2.3':
|
|
413
|
+
resolution: {integrity: sha512-Ibm29/GgB/ab5n7XKqlStkm54qqZE8v2FnijUPBgrd67FWrac45o/RsNlaOWjme/B5UqeWt/8KM4aWBwA1D2Kw==}
|
|
394
414
|
engines: {node: '>= 10'}
|
|
395
415
|
cpu: [x64]
|
|
396
416
|
os: [win32]
|
|
@@ -484,24 +504,28 @@ packages:
|
|
|
484
504
|
engines: {node: '>= 10'}
|
|
485
505
|
cpu: [arm64]
|
|
486
506
|
os: [linux]
|
|
507
|
+
libc: [glibc]
|
|
487
508
|
|
|
488
509
|
'@tailwindcss/oxide-linux-arm64-musl@4.1.17':
|
|
489
510
|
resolution: {integrity: sha512-HvZLfGr42i5anKtIeQzxdkw/wPqIbpeZqe7vd3V9vI3RQxe3xU1fLjss0TjyhxWcBaipk7NYwSrwTwK1hJARMg==}
|
|
490
511
|
engines: {node: '>= 10'}
|
|
491
512
|
cpu: [arm64]
|
|
492
513
|
os: [linux]
|
|
514
|
+
libc: [musl]
|
|
493
515
|
|
|
494
516
|
'@tailwindcss/oxide-linux-x64-gnu@4.1.17':
|
|
495
517
|
resolution: {integrity: sha512-M3XZuORCGB7VPOEDH+nzpJ21XPvK5PyjlkSFkFziNHGLc5d6g3di2McAAblmaSUNl8IOmzYwLx9NsE7bplNkwQ==}
|
|
496
518
|
engines: {node: '>= 10'}
|
|
497
519
|
cpu: [x64]
|
|
498
520
|
os: [linux]
|
|
521
|
+
libc: [glibc]
|
|
499
522
|
|
|
500
523
|
'@tailwindcss/oxide-linux-x64-musl@4.1.17':
|
|
501
524
|
resolution: {integrity: sha512-k7f+pf9eXLEey4pBlw+8dgfJHY4PZ5qOUFDyNf7SI6lHjQ9Zt7+NcscjpwdCEbYi6FI5c2KDTDWyf2iHcCSyyQ==}
|
|
502
525
|
engines: {node: '>= 10'}
|
|
503
526
|
cpu: [x64]
|
|
504
527
|
os: [linux]
|
|
528
|
+
libc: [musl]
|
|
505
529
|
|
|
506
530
|
'@tailwindcss/oxide-wasm32-wasi@4.1.17':
|
|
507
531
|
resolution: {integrity: sha512-cEytGqSSoy7zK4JRWiTCx43FsKP/zGr0CsuMawhH67ONlH+T79VteQeJQRO/X7L0juEUA8ZyuYikcRBf0vsxhg==}
|
|
@@ -537,7 +561,7 @@ packages:
|
|
|
537
561
|
'@trieb.work/nextjs-turbo-redis-cache@file:../../..':
|
|
538
562
|
resolution: {directory: ../../.., type: directory}
|
|
539
563
|
peerDependencies:
|
|
540
|
-
next: '>=15.0.3
|
|
564
|
+
next: '>=15.0.3 <16.3.0'
|
|
541
565
|
redis: 4.7.0
|
|
542
566
|
|
|
543
567
|
'@tybys/wasm-util@0.10.1':
|
|
@@ -661,41 +685,49 @@ packages:
|
|
|
661
685
|
resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==}
|
|
662
686
|
cpu: [arm64]
|
|
663
687
|
os: [linux]
|
|
688
|
+
libc: [glibc]
|
|
664
689
|
|
|
665
690
|
'@unrs/resolver-binding-linux-arm64-musl@1.11.1':
|
|
666
691
|
resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==}
|
|
667
692
|
cpu: [arm64]
|
|
668
693
|
os: [linux]
|
|
694
|
+
libc: [musl]
|
|
669
695
|
|
|
670
696
|
'@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
|
|
671
697
|
resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==}
|
|
672
698
|
cpu: [ppc64]
|
|
673
699
|
os: [linux]
|
|
700
|
+
libc: [glibc]
|
|
674
701
|
|
|
675
702
|
'@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
|
|
676
703
|
resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==}
|
|
677
704
|
cpu: [riscv64]
|
|
678
705
|
os: [linux]
|
|
706
|
+
libc: [glibc]
|
|
679
707
|
|
|
680
708
|
'@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
|
|
681
709
|
resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==}
|
|
682
710
|
cpu: [riscv64]
|
|
683
711
|
os: [linux]
|
|
712
|
+
libc: [musl]
|
|
684
713
|
|
|
685
714
|
'@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
|
|
686
715
|
resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==}
|
|
687
716
|
cpu: [s390x]
|
|
688
717
|
os: [linux]
|
|
718
|
+
libc: [glibc]
|
|
689
719
|
|
|
690
720
|
'@unrs/resolver-binding-linux-x64-gnu@1.11.1':
|
|
691
721
|
resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==}
|
|
692
722
|
cpu: [x64]
|
|
693
723
|
os: [linux]
|
|
724
|
+
libc: [glibc]
|
|
694
725
|
|
|
695
726
|
'@unrs/resolver-binding-linux-x64-musl@1.11.1':
|
|
696
727
|
resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==}
|
|
697
728
|
cpu: [x64]
|
|
698
729
|
os: [linux]
|
|
730
|
+
libc: [musl]
|
|
699
731
|
|
|
700
732
|
'@unrs/resolver-binding-wasm32-wasi@1.11.1':
|
|
701
733
|
resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==}
|
|
@@ -795,6 +827,11 @@ packages:
|
|
|
795
827
|
balanced-match@1.0.2:
|
|
796
828
|
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
|
797
829
|
|
|
830
|
+
baseline-browser-mapping@2.10.27:
|
|
831
|
+
resolution: {integrity: sha512-zEs/ufmZoUd7WftKpKyXaT6RFxpQ5Qm9xytKRHvJfxFV9DFJkZph9RvJ1LcOUi0Z1ZVijMte65JbILeV+8QQEA==}
|
|
832
|
+
engines: {node: '>=6.0.0'}
|
|
833
|
+
hasBin: true
|
|
834
|
+
|
|
798
835
|
baseline-browser-mapping@2.8.31:
|
|
799
836
|
resolution: {integrity: sha512-a28v2eWrrRWPpJSzxc+mKwm0ZtVx/G8SepdQZDArnXYU/XS+IF6mp8aB/4E+hH1tyGCoDo3KlUCdlSxGDsRkAw==}
|
|
800
837
|
hasBin: true
|
|
@@ -969,8 +1006,8 @@ packages:
|
|
|
969
1006
|
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
|
970
1007
|
engines: {node: '>=10'}
|
|
971
1008
|
|
|
972
|
-
eslint-config-next@16.
|
|
973
|
-
resolution: {integrity: sha512-
|
|
1009
|
+
eslint-config-next@16.2.3:
|
|
1010
|
+
resolution: {integrity: sha512-Dnkrylzjof/Az7iNoIQJqD18zTxQZcngir19KJaiRsMnnjpQSVoa6aEg/1Q4hQC+cW90uTlgQYadwL1CYNwFWA==}
|
|
974
1011
|
peerDependencies:
|
|
975
1012
|
eslint: '>=9.0.0'
|
|
976
1013
|
typescript: '>=3.3.1'
|
|
@@ -1457,24 +1494,28 @@ packages:
|
|
|
1457
1494
|
engines: {node: '>= 12.0.0'}
|
|
1458
1495
|
cpu: [arm64]
|
|
1459
1496
|
os: [linux]
|
|
1497
|
+
libc: [glibc]
|
|
1460
1498
|
|
|
1461
1499
|
lightningcss-linux-arm64-musl@1.30.2:
|
|
1462
1500
|
resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
|
|
1463
1501
|
engines: {node: '>= 12.0.0'}
|
|
1464
1502
|
cpu: [arm64]
|
|
1465
1503
|
os: [linux]
|
|
1504
|
+
libc: [musl]
|
|
1466
1505
|
|
|
1467
1506
|
lightningcss-linux-x64-gnu@1.30.2:
|
|
1468
1507
|
resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
|
|
1469
1508
|
engines: {node: '>= 12.0.0'}
|
|
1470
1509
|
cpu: [x64]
|
|
1471
1510
|
os: [linux]
|
|
1511
|
+
libc: [glibc]
|
|
1472
1512
|
|
|
1473
1513
|
lightningcss-linux-x64-musl@1.30.2:
|
|
1474
1514
|
resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
|
|
1475
1515
|
engines: {node: '>= 12.0.0'}
|
|
1476
1516
|
cpu: [x64]
|
|
1477
1517
|
os: [linux]
|
|
1518
|
+
libc: [musl]
|
|
1478
1519
|
|
|
1479
1520
|
lightningcss-win32-arm64-msvc@1.30.2:
|
|
1480
1521
|
resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
|
|
@@ -1547,8 +1588,8 @@ packages:
|
|
|
1547
1588
|
natural-compare@1.4.0:
|
|
1548
1589
|
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
|
1549
1590
|
|
|
1550
|
-
next@16.
|
|
1551
|
-
resolution: {integrity: sha512-
|
|
1591
|
+
next@16.2.3:
|
|
1592
|
+
resolution: {integrity: sha512-9V3zV4oZFza3PVev5/poB9g0dEafVcgNyQ8eTRop8GvxZjV2G15FC5ARuG1eFD42QgeYkzJBJzHghNP8Ad9xtA==}
|
|
1552
1593
|
engines: {node: '>=20.9.0'}
|
|
1553
1594
|
hasBin: true
|
|
1554
1595
|
peerDependencies:
|
|
@@ -2266,34 +2307,34 @@ snapshots:
|
|
|
2266
2307
|
'@tybys/wasm-util': 0.10.1
|
|
2267
2308
|
optional: true
|
|
2268
2309
|
|
|
2269
|
-
'@next/env@16.
|
|
2310
|
+
'@next/env@16.2.3': {}
|
|
2270
2311
|
|
|
2271
|
-
'@next/eslint-plugin-next@16.
|
|
2312
|
+
'@next/eslint-plugin-next@16.2.3':
|
|
2272
2313
|
dependencies:
|
|
2273
2314
|
fast-glob: 3.3.1
|
|
2274
2315
|
|
|
2275
|
-
'@next/swc-darwin-arm64@16.
|
|
2316
|
+
'@next/swc-darwin-arm64@16.2.3':
|
|
2276
2317
|
optional: true
|
|
2277
2318
|
|
|
2278
|
-
'@next/swc-darwin-x64@16.
|
|
2319
|
+
'@next/swc-darwin-x64@16.2.3':
|
|
2279
2320
|
optional: true
|
|
2280
2321
|
|
|
2281
|
-
'@next/swc-linux-arm64-gnu@16.
|
|
2322
|
+
'@next/swc-linux-arm64-gnu@16.2.3':
|
|
2282
2323
|
optional: true
|
|
2283
2324
|
|
|
2284
|
-
'@next/swc-linux-arm64-musl@16.
|
|
2325
|
+
'@next/swc-linux-arm64-musl@16.2.3':
|
|
2285
2326
|
optional: true
|
|
2286
2327
|
|
|
2287
|
-
'@next/swc-linux-x64-gnu@16.
|
|
2328
|
+
'@next/swc-linux-x64-gnu@16.2.3':
|
|
2288
2329
|
optional: true
|
|
2289
2330
|
|
|
2290
|
-
'@next/swc-linux-x64-musl@16.
|
|
2331
|
+
'@next/swc-linux-x64-musl@16.2.3':
|
|
2291
2332
|
optional: true
|
|
2292
2333
|
|
|
2293
|
-
'@next/swc-win32-arm64-msvc@16.
|
|
2334
|
+
'@next/swc-win32-arm64-msvc@16.2.3':
|
|
2294
2335
|
optional: true
|
|
2295
2336
|
|
|
2296
|
-
'@next/swc-win32-x64-msvc@16.
|
|
2337
|
+
'@next/swc-win32-x64-msvc@16.2.3':
|
|
2297
2338
|
optional: true
|
|
2298
2339
|
|
|
2299
2340
|
'@nodelib/fs.scandir@2.1.5':
|
|
@@ -2411,9 +2452,9 @@ snapshots:
|
|
|
2411
2452
|
postcss: 8.5.6
|
|
2412
2453
|
tailwindcss: 4.1.17
|
|
2413
2454
|
|
|
2414
|
-
'@trieb.work/nextjs-turbo-redis-cache@file:../../..(next@16.
|
|
2455
|
+
'@trieb.work/nextjs-turbo-redis-cache@file:../../..(next@16.2.3(@babel/core@7.28.5)(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(redis@4.7.0)':
|
|
2415
2456
|
dependencies:
|
|
2416
|
-
next: 16.
|
|
2457
|
+
next: 16.2.3(@babel/core@7.28.5)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
|
|
2417
2458
|
redis: 4.7.0
|
|
2418
2459
|
|
|
2419
2460
|
'@tybys/wasm-util@0.10.1':
|
|
@@ -2693,6 +2734,8 @@ snapshots:
|
|
|
2693
2734
|
|
|
2694
2735
|
balanced-match@1.0.2: {}
|
|
2695
2736
|
|
|
2737
|
+
baseline-browser-mapping@2.10.27: {}
|
|
2738
|
+
|
|
2696
2739
|
baseline-browser-mapping@2.8.31: {}
|
|
2697
2740
|
|
|
2698
2741
|
brace-expansion@1.1.12:
|
|
@@ -2932,9 +2975,9 @@ snapshots:
|
|
|
2932
2975
|
|
|
2933
2976
|
escape-string-regexp@4.0.0: {}
|
|
2934
2977
|
|
|
2935
|
-
eslint-config-next@16.
|
|
2978
|
+
eslint-config-next@16.2.3(@typescript-eslint/parser@8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3):
|
|
2936
2979
|
dependencies:
|
|
2937
|
-
'@next/eslint-plugin-next': 16.
|
|
2980
|
+
'@next/eslint-plugin-next': 16.2.3
|
|
2938
2981
|
eslint: 9.39.1(jiti@2.6.1)
|
|
2939
2982
|
eslint-import-resolver-node: 0.3.9
|
|
2940
2983
|
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.1(jiti@2.6.1))
|
|
@@ -3567,25 +3610,25 @@ snapshots:
|
|
|
3567
3610
|
|
|
3568
3611
|
natural-compare@1.4.0: {}
|
|
3569
3612
|
|
|
3570
|
-
next@16.
|
|
3613
|
+
next@16.2.3(@babel/core@7.28.5)(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
|
|
3571
3614
|
dependencies:
|
|
3572
|
-
'@next/env': 16.
|
|
3615
|
+
'@next/env': 16.2.3
|
|
3573
3616
|
'@swc/helpers': 0.5.15
|
|
3574
|
-
baseline-browser-mapping: 2.
|
|
3617
|
+
baseline-browser-mapping: 2.10.27
|
|
3575
3618
|
caniuse-lite: 1.0.30001756
|
|
3576
3619
|
postcss: 8.4.31
|
|
3577
3620
|
react: 19.2.0
|
|
3578
3621
|
react-dom: 19.2.0(react@19.2.0)
|
|
3579
3622
|
styled-jsx: 5.1.6(@babel/core@7.28.5)(react@19.2.0)
|
|
3580
3623
|
optionalDependencies:
|
|
3581
|
-
'@next/swc-darwin-arm64': 16.
|
|
3582
|
-
'@next/swc-darwin-x64': 16.
|
|
3583
|
-
'@next/swc-linux-arm64-gnu': 16.
|
|
3584
|
-
'@next/swc-linux-arm64-musl': 16.
|
|
3585
|
-
'@next/swc-linux-x64-gnu': 16.
|
|
3586
|
-
'@next/swc-linux-x64-musl': 16.
|
|
3587
|
-
'@next/swc-win32-arm64-msvc': 16.
|
|
3588
|
-
'@next/swc-win32-x64-msvc': 16.
|
|
3624
|
+
'@next/swc-darwin-arm64': 16.2.3
|
|
3625
|
+
'@next/swc-darwin-x64': 16.2.3
|
|
3626
|
+
'@next/swc-linux-arm64-gnu': 16.2.3
|
|
3627
|
+
'@next/swc-linux-arm64-musl': 16.2.3
|
|
3628
|
+
'@next/swc-linux-x64-gnu': 16.2.3
|
|
3629
|
+
'@next/swc-linux-x64-musl': 16.2.3
|
|
3630
|
+
'@next/swc-win32-arm64-msvc': 16.2.3
|
|
3631
|
+
'@next/swc-win32-x64-msvc': 16.2.3
|
|
3589
3632
|
sharp: 0.34.5
|
|
3590
3633
|
transitivePeerDependencies:
|
|
3591
3634
|
- '@babel/core'
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
const config = {
|
|
2
|
-
plugins: {
|
|
3
|
-
"@tailwindcss/postcss": {},
|
|
4
|
-
},
|
|
5
|
-
};
|
|
6
|
-
|
|
7
|
-
export default config;
|
|
1
|
+
const config = {
|
|
2
|
+
plugins: {
|
|
3
|
+
"@tailwindcss/postcss": {},
|
|
4
|
+
},
|
|
5
|
+
};
|
|
6
|
+
|
|
7
|
+
export default config;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "next-app-16-
|
|
2
|
+
"name": "next-app-16-2-3-cache-components",
|
|
3
3
|
"version": "0.1.0",
|
|
4
4
|
"private": true,
|
|
5
5
|
"scripts": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@trieb.work/nextjs-turbo-redis-cache": "file:../../../",
|
|
13
|
-
"next": "16.
|
|
13
|
+
"next": "16.2.3",
|
|
14
14
|
"react": "19.2.0",
|
|
15
15
|
"react-dom": "19.2.0",
|
|
16
16
|
"redis": "4.7.0"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@types/react": "^19",
|
|
22
22
|
"@types/react-dom": "^19",
|
|
23
23
|
"eslint": "^9",
|
|
24
|
-
"eslint-config-next": "16.
|
|
24
|
+
"eslint-config-next": "16.2.3",
|
|
25
25
|
"tailwindcss": "^4",
|
|
26
26
|
"typescript": "^5"
|
|
27
27
|
}
|