@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
|
@@ -155,72 +155,85 @@ packages:
|
|
|
155
155
|
resolution: {integrity: sha512-IVfGJa7gjChDET1dK9SekxFFdflarnUB8PwW8aGwEoF3oAsSDuNUTYS+SKDOyOJxQyDC1aPFMuRYLoDInyV9Ew==}
|
|
156
156
|
cpu: [arm64]
|
|
157
157
|
os: [linux]
|
|
158
|
+
libc: [glibc]
|
|
158
159
|
|
|
159
160
|
'@img/sharp-libvips-linux-arm@1.1.0':
|
|
160
161
|
resolution: {integrity: sha512-s8BAd0lwUIvYCJyRdFqvsj+BJIpDBSxs6ivrOPm/R7piTs5UIwY5OjXrP2bqXC9/moGsyRa37eYWYCOGVXxVrA==}
|
|
161
162
|
cpu: [arm]
|
|
162
163
|
os: [linux]
|
|
164
|
+
libc: [glibc]
|
|
163
165
|
|
|
164
166
|
'@img/sharp-libvips-linux-ppc64@1.1.0':
|
|
165
167
|
resolution: {integrity: sha512-tiXxFZFbhnkWE2LA8oQj7KYR+bWBkiV2nilRldT7bqoEZ4HiDOcePr9wVDAZPi/Id5fT1oY9iGnDq20cwUz8lQ==}
|
|
166
168
|
cpu: [ppc64]
|
|
167
169
|
os: [linux]
|
|
170
|
+
libc: [glibc]
|
|
168
171
|
|
|
169
172
|
'@img/sharp-libvips-linux-s390x@1.1.0':
|
|
170
173
|
resolution: {integrity: sha512-xukSwvhguw7COyzvmjydRb3x/09+21HykyapcZchiCUkTThEQEOMtBj9UhkaBRLuBrgLFzQ2wbxdeCCJW/jgJA==}
|
|
171
174
|
cpu: [s390x]
|
|
172
175
|
os: [linux]
|
|
176
|
+
libc: [glibc]
|
|
173
177
|
|
|
174
178
|
'@img/sharp-libvips-linux-x64@1.1.0':
|
|
175
179
|
resolution: {integrity: sha512-yRj2+reB8iMg9W5sULM3S74jVS7zqSzHG3Ol/twnAAkAhnGQnpjj6e4ayUz7V+FpKypwgs82xbRdYtchTTUB+Q==}
|
|
176
180
|
cpu: [x64]
|
|
177
181
|
os: [linux]
|
|
182
|
+
libc: [glibc]
|
|
178
183
|
|
|
179
184
|
'@img/sharp-libvips-linuxmusl-arm64@1.1.0':
|
|
180
185
|
resolution: {integrity: sha512-jYZdG+whg0MDK+q2COKbYidaqW/WTz0cc1E+tMAusiDygrM4ypmSCjOJPmFTvHHJ8j/6cAGyeDWZOsK06tP33w==}
|
|
181
186
|
cpu: [arm64]
|
|
182
187
|
os: [linux]
|
|
188
|
+
libc: [musl]
|
|
183
189
|
|
|
184
190
|
'@img/sharp-libvips-linuxmusl-x64@1.1.0':
|
|
185
191
|
resolution: {integrity: sha512-wK7SBdwrAiycjXdkPnGCPLjYb9lD4l6Ze2gSdAGVZrEL05AOUJESWU2lhlC+Ffn5/G+VKuSm6zzbQSzFX/P65A==}
|
|
186
192
|
cpu: [x64]
|
|
187
193
|
os: [linux]
|
|
194
|
+
libc: [musl]
|
|
188
195
|
|
|
189
196
|
'@img/sharp-linux-arm64@0.34.1':
|
|
190
197
|
resolution: {integrity: sha512-kX2c+vbvaXC6vly1RDf/IWNXxrlxLNpBVWkdpRq5Ka7OOKj6nr66etKy2IENf6FtOgklkg9ZdGpEu9kwdlcwOQ==}
|
|
191
198
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
192
199
|
cpu: [arm64]
|
|
193
200
|
os: [linux]
|
|
201
|
+
libc: [glibc]
|
|
194
202
|
|
|
195
203
|
'@img/sharp-linux-arm@0.34.1':
|
|
196
204
|
resolution: {integrity: sha512-anKiszvACti2sGy9CirTlNyk7BjjZPiML1jt2ZkTdcvpLU1YH6CXwRAZCA2UmRXnhiIftXQ7+Oh62Ji25W72jA==}
|
|
197
205
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
198
206
|
cpu: [arm]
|
|
199
207
|
os: [linux]
|
|
208
|
+
libc: [glibc]
|
|
200
209
|
|
|
201
210
|
'@img/sharp-linux-s390x@0.34.1':
|
|
202
211
|
resolution: {integrity: sha512-7s0KX2tI9mZI2buRipKIw2X1ufdTeaRgwmRabt5bi9chYfhur+/C1OXg3TKg/eag1W+6CCWLVmSauV1owmRPxA==}
|
|
203
212
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
204
213
|
cpu: [s390x]
|
|
205
214
|
os: [linux]
|
|
215
|
+
libc: [glibc]
|
|
206
216
|
|
|
207
217
|
'@img/sharp-linux-x64@0.34.1':
|
|
208
218
|
resolution: {integrity: sha512-wExv7SH9nmoBW3Wr2gvQopX1k8q2g5V5Iag8Zk6AVENsjwd+3adjwxtp3Dcu2QhOXr8W9NusBU6XcQUohBZ5MA==}
|
|
209
219
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
210
220
|
cpu: [x64]
|
|
211
221
|
os: [linux]
|
|
222
|
+
libc: [glibc]
|
|
212
223
|
|
|
213
224
|
'@img/sharp-linuxmusl-arm64@0.34.1':
|
|
214
225
|
resolution: {integrity: sha512-DfvyxzHxw4WGdPiTF0SOHnm11Xv4aQexvqhRDAoD00MzHekAj9a/jADXeXYCDFH/DzYruwHbXU7uz+H+nWmSOQ==}
|
|
215
226
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
216
227
|
cpu: [arm64]
|
|
217
228
|
os: [linux]
|
|
229
|
+
libc: [musl]
|
|
218
230
|
|
|
219
231
|
'@img/sharp-linuxmusl-x64@0.34.1':
|
|
220
232
|
resolution: {integrity: sha512-pax/kTR407vNb9qaSIiWVnQplPcGU8LRIJpDT5o8PdAx5aAA7AS3X9PS8Isw1/WfqgQorPotjrZL3Pqh6C5EBg==}
|
|
221
233
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
222
234
|
cpu: [x64]
|
|
223
235
|
os: [linux]
|
|
236
|
+
libc: [musl]
|
|
224
237
|
|
|
225
238
|
'@img/sharp-wasm32@0.34.1':
|
|
226
239
|
resolution: {integrity: sha512-YDybQnYrLQfEpzGOQe7OKcyLUCML4YOXl428gOOzBgN6Gw0rv8dpsJ7PqTHxBnXnwXr8S1mYFSLSa727tpz0xg==}
|
|
@@ -265,24 +278,28 @@ packages:
|
|
|
265
278
|
engines: {node: '>= 10'}
|
|
266
279
|
cpu: [arm64]
|
|
267
280
|
os: [linux]
|
|
281
|
+
libc: [glibc]
|
|
268
282
|
|
|
269
283
|
'@next/swc-linux-arm64-musl@15.3.2':
|
|
270
284
|
resolution: {integrity: sha512-KQkMEillvlW5Qk5mtGA/3Yz0/tzpNlSw6/3/ttsV1lNtMuOHcGii3zVeXZyi4EJmmLDKYcTcByV2wVsOhDt/zg==}
|
|
271
285
|
engines: {node: '>= 10'}
|
|
272
286
|
cpu: [arm64]
|
|
273
287
|
os: [linux]
|
|
288
|
+
libc: [musl]
|
|
274
289
|
|
|
275
290
|
'@next/swc-linux-x64-gnu@15.3.2':
|
|
276
291
|
resolution: {integrity: sha512-uRBo6THWei0chz+Y5j37qzx+BtoDRFIkDzZjlpCItBRXyMPIg079eIkOCl3aqr2tkxL4HFyJ4GHDes7W8HuAUg==}
|
|
277
292
|
engines: {node: '>= 10'}
|
|
278
293
|
cpu: [x64]
|
|
279
294
|
os: [linux]
|
|
295
|
+
libc: [glibc]
|
|
280
296
|
|
|
281
297
|
'@next/swc-linux-x64-musl@15.3.2':
|
|
282
298
|
resolution: {integrity: sha512-+uxFlPuCNx/T9PdMClOqeE8USKzj8tVz37KflT3Kdbx/LOlZBRI2yxuIcmx1mPNK8DwSOMNCr4ureSet7eyC0w==}
|
|
283
299
|
engines: {node: '>= 10'}
|
|
284
300
|
cpu: [x64]
|
|
285
301
|
os: [linux]
|
|
302
|
+
libc: [musl]
|
|
286
303
|
|
|
287
304
|
'@next/swc-win32-arm64-msvc@15.3.2':
|
|
288
305
|
resolution: {integrity: sha512-LLTKmaI5cfD8dVzh5Vt7+OMo+AIOClEdIU/TSKbXXT2iScUTSxOGoBhfuv+FU8R9MLmrkIL1e2fBMkEEjYAtPQ==}
|
|
@@ -391,24 +408,28 @@ packages:
|
|
|
391
408
|
engines: {node: '>= 10'}
|
|
392
409
|
cpu: [arm64]
|
|
393
410
|
os: [linux]
|
|
411
|
+
libc: [glibc]
|
|
394
412
|
|
|
395
413
|
'@tailwindcss/oxide-linux-arm64-musl@4.1.4':
|
|
396
414
|
resolution: {integrity: sha512-X3As2xhtgPTY/m5edUtddmZ8rCruvBvtxYLMw9OsZdH01L2gS2icsHRwxdU0dMItNfVmrBezueXZCHxVeeb7Aw==}
|
|
397
415
|
engines: {node: '>= 10'}
|
|
398
416
|
cpu: [arm64]
|
|
399
417
|
os: [linux]
|
|
418
|
+
libc: [musl]
|
|
400
419
|
|
|
401
420
|
'@tailwindcss/oxide-linux-x64-gnu@4.1.4':
|
|
402
421
|
resolution: {integrity: sha512-2VG4DqhGaDSmYIu6C4ua2vSLXnJsb/C9liej7TuSO04NK+JJJgJucDUgmX6sn7Gw3Cs5ZJ9ZLrnI0QRDOjLfNQ==}
|
|
403
422
|
engines: {node: '>= 10'}
|
|
404
423
|
cpu: [x64]
|
|
405
424
|
os: [linux]
|
|
425
|
+
libc: [glibc]
|
|
406
426
|
|
|
407
427
|
'@tailwindcss/oxide-linux-x64-musl@4.1.4':
|
|
408
428
|
resolution: {integrity: sha512-v+mxVgH2kmur/X5Mdrz9m7TsoVjbdYQT0b4Z+dr+I4RvreCNXyCFELZL/DO0M1RsidZTrm6O1eMnV6zlgEzTMQ==}
|
|
409
429
|
engines: {node: '>= 10'}
|
|
410
430
|
cpu: [x64]
|
|
411
431
|
os: [linux]
|
|
432
|
+
libc: [musl]
|
|
412
433
|
|
|
413
434
|
'@tailwindcss/oxide-wasm32-wasi@4.1.4':
|
|
414
435
|
resolution: {integrity: sha512-2TLe9ir+9esCf6Wm+lLWTMbgklIjiF0pbmDnwmhR9MksVOq+e8aP3TSsXySnBDDvTTVd/vKu1aNttEGj3P6l8Q==}
|
|
@@ -444,7 +465,7 @@ packages:
|
|
|
444
465
|
'@trieb.work/nextjs-turbo-redis-cache@file:../../..':
|
|
445
466
|
resolution: {directory: ../../.., type: directory}
|
|
446
467
|
peerDependencies:
|
|
447
|
-
next: '>=15.0.3
|
|
468
|
+
next: '>=15.0.3 <16.3.0'
|
|
448
469
|
redis: 4.7.0
|
|
449
470
|
|
|
450
471
|
'@tybys/wasm-util@0.9.0':
|
|
@@ -546,36 +567,43 @@ packages:
|
|
|
546
567
|
resolution: {integrity: sha512-FX2FV7vpLE/+Z0NZX9/1pwWud5Wocm/2PgpUXbT5aSV3QEB10kBPJAzssOQylvdj8mOHoKl5pVkXpbCwww/T2g==}
|
|
547
568
|
cpu: [arm64]
|
|
548
569
|
os: [linux]
|
|
570
|
+
libc: [glibc]
|
|
549
571
|
|
|
550
572
|
'@unrs/resolver-binding-linux-arm64-musl@1.5.0':
|
|
551
573
|
resolution: {integrity: sha512-+gF97xst1BZb28T3nwwzEtq2ewCoMDGKsenYsZuvpmNrW0019G1iUAunZN+FG55L21y+uP7zsGX06OXDQ/viKw==}
|
|
552
574
|
cpu: [arm64]
|
|
553
575
|
os: [linux]
|
|
576
|
+
libc: [musl]
|
|
554
577
|
|
|
555
578
|
'@unrs/resolver-binding-linux-ppc64-gnu@1.5.0':
|
|
556
579
|
resolution: {integrity: sha512-5bEmVcQw9js8JYM2LkUBw5SeELSIxX+qKf9bFrfFINKAp4noZ//hUxLpbF7u/3gTBN1GsER6xOzIZlw/VTdXtA==}
|
|
557
580
|
cpu: [ppc64]
|
|
558
581
|
os: [linux]
|
|
582
|
+
libc: [glibc]
|
|
559
583
|
|
|
560
584
|
'@unrs/resolver-binding-linux-riscv64-gnu@1.5.0':
|
|
561
585
|
resolution: {integrity: sha512-GGk/8TPUsf1Q99F+lzMdjE6sGL26uJCwQ9TlvBs8zR3cLQNw/MIumPN7zrs3GFGySjnwXc8gA6J3HKbejywmqA==}
|
|
562
586
|
cpu: [riscv64]
|
|
563
587
|
os: [linux]
|
|
588
|
+
libc: [glibc]
|
|
564
589
|
|
|
565
590
|
'@unrs/resolver-binding-linux-s390x-gnu@1.5.0':
|
|
566
591
|
resolution: {integrity: sha512-5uRkFYYVNAeVaA4W/CwugjFN3iDOHCPqsBLCCOoJiMfFMMz4evBRsg+498OFa9w6VcTn2bD5aI+RRayaIgk2Sw==}
|
|
567
592
|
cpu: [s390x]
|
|
568
593
|
os: [linux]
|
|
594
|
+
libc: [glibc]
|
|
569
595
|
|
|
570
596
|
'@unrs/resolver-binding-linux-x64-gnu@1.5.0':
|
|
571
597
|
resolution: {integrity: sha512-j905CZH3nehYy6NimNqC2B14pxn4Ltd7guKMyPTzKehbFXTUgihQS/ZfHQTdojkMzbSwBOSgq1dOrY+IpgxDsA==}
|
|
572
598
|
cpu: [x64]
|
|
573
599
|
os: [linux]
|
|
600
|
+
libc: [glibc]
|
|
574
601
|
|
|
575
602
|
'@unrs/resolver-binding-linux-x64-musl@1.5.0':
|
|
576
603
|
resolution: {integrity: sha512-dmLevQTuzQRwu5A+mvj54R5aye5I4PVKiWqGxg8tTaYP2k2oTs/3Mo8mgnhPk28VoYCi0fdFYpgzCd4AJndQvQ==}
|
|
577
604
|
cpu: [x64]
|
|
578
605
|
os: [linux]
|
|
606
|
+
libc: [musl]
|
|
579
607
|
|
|
580
608
|
'@unrs/resolver-binding-wasm32-wasi@1.5.0':
|
|
581
609
|
resolution: {integrity: sha512-LtJMhwu7avhoi+kKfAZOKN773RtzLBVVF90YJbB0wyMpUj9yQPeA+mteVUI9P70OG/opH47FeV5AWeaNWWgqJg==}
|
|
@@ -1289,24 +1317,28 @@ packages:
|
|
|
1289
1317
|
engines: {node: '>= 12.0.0'}
|
|
1290
1318
|
cpu: [arm64]
|
|
1291
1319
|
os: [linux]
|
|
1320
|
+
libc: [glibc]
|
|
1292
1321
|
|
|
1293
1322
|
lightningcss-linux-arm64-musl@1.29.2:
|
|
1294
1323
|
resolution: {integrity: sha512-Q64eM1bPlOOUgxFmoPUefqzY1yV3ctFPE6d/Vt7WzLW4rKTv7MyYNky+FWxRpLkNASTnKQUaiMJ87zNODIrrKQ==}
|
|
1295
1324
|
engines: {node: '>= 12.0.0'}
|
|
1296
1325
|
cpu: [arm64]
|
|
1297
1326
|
os: [linux]
|
|
1327
|
+
libc: [musl]
|
|
1298
1328
|
|
|
1299
1329
|
lightningcss-linux-x64-gnu@1.29.2:
|
|
1300
1330
|
resolution: {integrity: sha512-0v6idDCPG6epLXtBH/RPkHvYx74CVziHo6TMYga8O2EiQApnUPZsbR9nFNrg2cgBzk1AYqEd95TlrsL7nYABQg==}
|
|
1301
1331
|
engines: {node: '>= 12.0.0'}
|
|
1302
1332
|
cpu: [x64]
|
|
1303
1333
|
os: [linux]
|
|
1334
|
+
libc: [glibc]
|
|
1304
1335
|
|
|
1305
1336
|
lightningcss-linux-x64-musl@1.29.2:
|
|
1306
1337
|
resolution: {integrity: sha512-rMpz2yawkgGT8RULc5S4WiZopVMOFWjiItBT7aSfDX4NQav6M44rhn5hjtkKzB+wMTRlLLqxkeYEtQ3dd9696w==}
|
|
1307
1338
|
engines: {node: '>= 12.0.0'}
|
|
1308
1339
|
cpu: [x64]
|
|
1309
1340
|
os: [linux]
|
|
1341
|
+
libc: [musl]
|
|
1310
1342
|
|
|
1311
1343
|
lightningcss-win32-arm64-msvc@1.29.2:
|
|
1312
1344
|
resolution: {integrity: sha512-nL7zRW6evGQqYVu/bKGK+zShyz8OVzsCotFgc7judbt6wnB2KbiKKJwBE4SGoDBQ1O94RjW4asrCjQL4i8Fhbw==}
|
|
@@ -162,89 +162,105 @@ packages:
|
|
|
162
162
|
resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==}
|
|
163
163
|
cpu: [arm64]
|
|
164
164
|
os: [linux]
|
|
165
|
+
libc: [glibc]
|
|
165
166
|
|
|
166
167
|
'@img/sharp-libvips-linux-arm@1.2.4':
|
|
167
168
|
resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==}
|
|
168
169
|
cpu: [arm]
|
|
169
170
|
os: [linux]
|
|
171
|
+
libc: [glibc]
|
|
170
172
|
|
|
171
173
|
'@img/sharp-libvips-linux-ppc64@1.2.4':
|
|
172
174
|
resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==}
|
|
173
175
|
cpu: [ppc64]
|
|
174
176
|
os: [linux]
|
|
177
|
+
libc: [glibc]
|
|
175
178
|
|
|
176
179
|
'@img/sharp-libvips-linux-riscv64@1.2.4':
|
|
177
180
|
resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==}
|
|
178
181
|
cpu: [riscv64]
|
|
179
182
|
os: [linux]
|
|
183
|
+
libc: [glibc]
|
|
180
184
|
|
|
181
185
|
'@img/sharp-libvips-linux-s390x@1.2.4':
|
|
182
186
|
resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==}
|
|
183
187
|
cpu: [s390x]
|
|
184
188
|
os: [linux]
|
|
189
|
+
libc: [glibc]
|
|
185
190
|
|
|
186
191
|
'@img/sharp-libvips-linux-x64@1.2.4':
|
|
187
192
|
resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==}
|
|
188
193
|
cpu: [x64]
|
|
189
194
|
os: [linux]
|
|
195
|
+
libc: [glibc]
|
|
190
196
|
|
|
191
197
|
'@img/sharp-libvips-linuxmusl-arm64@1.2.4':
|
|
192
198
|
resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==}
|
|
193
199
|
cpu: [arm64]
|
|
194
200
|
os: [linux]
|
|
201
|
+
libc: [musl]
|
|
195
202
|
|
|
196
203
|
'@img/sharp-libvips-linuxmusl-x64@1.2.4':
|
|
197
204
|
resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==}
|
|
198
205
|
cpu: [x64]
|
|
199
206
|
os: [linux]
|
|
207
|
+
libc: [musl]
|
|
200
208
|
|
|
201
209
|
'@img/sharp-linux-arm64@0.34.5':
|
|
202
210
|
resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==}
|
|
203
211
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
204
212
|
cpu: [arm64]
|
|
205
213
|
os: [linux]
|
|
214
|
+
libc: [glibc]
|
|
206
215
|
|
|
207
216
|
'@img/sharp-linux-arm@0.34.5':
|
|
208
217
|
resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==}
|
|
209
218
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
210
219
|
cpu: [arm]
|
|
211
220
|
os: [linux]
|
|
221
|
+
libc: [glibc]
|
|
212
222
|
|
|
213
223
|
'@img/sharp-linux-ppc64@0.34.5':
|
|
214
224
|
resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==}
|
|
215
225
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
216
226
|
cpu: [ppc64]
|
|
217
227
|
os: [linux]
|
|
228
|
+
libc: [glibc]
|
|
218
229
|
|
|
219
230
|
'@img/sharp-linux-riscv64@0.34.5':
|
|
220
231
|
resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==}
|
|
221
232
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
222
233
|
cpu: [riscv64]
|
|
223
234
|
os: [linux]
|
|
235
|
+
libc: [glibc]
|
|
224
236
|
|
|
225
237
|
'@img/sharp-linux-s390x@0.34.5':
|
|
226
238
|
resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==}
|
|
227
239
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
228
240
|
cpu: [s390x]
|
|
229
241
|
os: [linux]
|
|
242
|
+
libc: [glibc]
|
|
230
243
|
|
|
231
244
|
'@img/sharp-linux-x64@0.34.5':
|
|
232
245
|
resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==}
|
|
233
246
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
234
247
|
cpu: [x64]
|
|
235
248
|
os: [linux]
|
|
249
|
+
libc: [glibc]
|
|
236
250
|
|
|
237
251
|
'@img/sharp-linuxmusl-arm64@0.34.5':
|
|
238
252
|
resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==}
|
|
239
253
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
240
254
|
cpu: [arm64]
|
|
241
255
|
os: [linux]
|
|
256
|
+
libc: [musl]
|
|
242
257
|
|
|
243
258
|
'@img/sharp-linuxmusl-x64@0.34.5':
|
|
244
259
|
resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==}
|
|
245
260
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
246
261
|
cpu: [x64]
|
|
247
262
|
os: [linux]
|
|
263
|
+
libc: [musl]
|
|
248
264
|
|
|
249
265
|
'@img/sharp-wasm32@0.34.5':
|
|
250
266
|
resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==}
|
|
@@ -295,24 +311,28 @@ packages:
|
|
|
295
311
|
engines: {node: '>= 10'}
|
|
296
312
|
cpu: [arm64]
|
|
297
313
|
os: [linux]
|
|
314
|
+
libc: [glibc]
|
|
298
315
|
|
|
299
316
|
'@next/swc-linux-arm64-musl@15.4.7':
|
|
300
317
|
resolution: {integrity: sha512-4SaCjlFR/2hGJqZLLWycccy1t+wBrE/vyJWnYaZJhUVHccpGLG5q0C+Xkw4iRzUIkE+/dr90MJRUym3s1+vO8A==}
|
|
301
318
|
engines: {node: '>= 10'}
|
|
302
319
|
cpu: [arm64]
|
|
303
320
|
os: [linux]
|
|
321
|
+
libc: [musl]
|
|
304
322
|
|
|
305
323
|
'@next/swc-linux-x64-gnu@15.4.7':
|
|
306
324
|
resolution: {integrity: sha512-2uNXjxvONyRidg00VwvlTYDwC9EgCGNzPAPYbttIATZRxmOZ3hllk/YYESzHZb65eyZfBR5g9xgCZjRAl9YYGg==}
|
|
307
325
|
engines: {node: '>= 10'}
|
|
308
326
|
cpu: [x64]
|
|
309
327
|
os: [linux]
|
|
328
|
+
libc: [glibc]
|
|
310
329
|
|
|
311
330
|
'@next/swc-linux-x64-musl@15.4.7':
|
|
312
331
|
resolution: {integrity: sha512-ceNbPjsFgLscYNGKSu4I6LYaadq2B8tcK116nVuInpHHdAWLWSwVK6CHNvCi0wVS9+TTArIFKJGsEyVD1H+4Kg==}
|
|
313
332
|
engines: {node: '>= 10'}
|
|
314
333
|
cpu: [x64]
|
|
315
334
|
os: [linux]
|
|
335
|
+
libc: [musl]
|
|
316
336
|
|
|
317
337
|
'@next/swc-win32-arm64-msvc@15.4.7':
|
|
318
338
|
resolution: {integrity: sha512-pZyxmY1iHlZJ04LUL7Css8bNvsYAMYOY9JRwFA3HZgpaNKsJSowD09Vg2R9734GxAcLJc2KDQHSCR91uD6/AAw==}
|
|
@@ -418,24 +438,28 @@ packages:
|
|
|
418
438
|
engines: {node: '>= 10'}
|
|
419
439
|
cpu: [arm64]
|
|
420
440
|
os: [linux]
|
|
441
|
+
libc: [glibc]
|
|
421
442
|
|
|
422
443
|
'@tailwindcss/oxide-linux-arm64-musl@4.1.4':
|
|
423
444
|
resolution: {integrity: sha512-X3As2xhtgPTY/m5edUtddmZ8rCruvBvtxYLMw9OsZdH01L2gS2icsHRwxdU0dMItNfVmrBezueXZCHxVeeb7Aw==}
|
|
424
445
|
engines: {node: '>= 10'}
|
|
425
446
|
cpu: [arm64]
|
|
426
447
|
os: [linux]
|
|
448
|
+
libc: [musl]
|
|
427
449
|
|
|
428
450
|
'@tailwindcss/oxide-linux-x64-gnu@4.1.4':
|
|
429
451
|
resolution: {integrity: sha512-2VG4DqhGaDSmYIu6C4ua2vSLXnJsb/C9liej7TuSO04NK+JJJgJucDUgmX6sn7Gw3Cs5ZJ9ZLrnI0QRDOjLfNQ==}
|
|
430
452
|
engines: {node: '>= 10'}
|
|
431
453
|
cpu: [x64]
|
|
432
454
|
os: [linux]
|
|
455
|
+
libc: [glibc]
|
|
433
456
|
|
|
434
457
|
'@tailwindcss/oxide-linux-x64-musl@4.1.4':
|
|
435
458
|
resolution: {integrity: sha512-v+mxVgH2kmur/X5Mdrz9m7TsoVjbdYQT0b4Z+dr+I4RvreCNXyCFELZL/DO0M1RsidZTrm6O1eMnV6zlgEzTMQ==}
|
|
436
459
|
engines: {node: '>= 10'}
|
|
437
460
|
cpu: [x64]
|
|
438
461
|
os: [linux]
|
|
462
|
+
libc: [musl]
|
|
439
463
|
|
|
440
464
|
'@tailwindcss/oxide-wasm32-wasi@4.1.4':
|
|
441
465
|
resolution: {integrity: sha512-2TLe9ir+9esCf6Wm+lLWTMbgklIjiF0pbmDnwmhR9MksVOq+e8aP3TSsXySnBDDvTTVd/vKu1aNttEGj3P6l8Q==}
|
|
@@ -471,7 +495,7 @@ packages:
|
|
|
471
495
|
'@trieb.work/nextjs-turbo-redis-cache@file:../../..':
|
|
472
496
|
resolution: {directory: ../../.., type: directory}
|
|
473
497
|
peerDependencies:
|
|
474
|
-
next: '>=15.0.3 <16.
|
|
498
|
+
next: '>=15.0.3 <16.3.0'
|
|
475
499
|
redis: 4.7.0
|
|
476
500
|
|
|
477
501
|
'@tybys/wasm-util@0.9.0':
|
|
@@ -573,36 +597,43 @@ packages:
|
|
|
573
597
|
resolution: {integrity: sha512-FX2FV7vpLE/+Z0NZX9/1pwWud5Wocm/2PgpUXbT5aSV3QEB10kBPJAzssOQylvdj8mOHoKl5pVkXpbCwww/T2g==}
|
|
574
598
|
cpu: [arm64]
|
|
575
599
|
os: [linux]
|
|
600
|
+
libc: [glibc]
|
|
576
601
|
|
|
577
602
|
'@unrs/resolver-binding-linux-arm64-musl@1.5.0':
|
|
578
603
|
resolution: {integrity: sha512-+gF97xst1BZb28T3nwwzEtq2ewCoMDGKsenYsZuvpmNrW0019G1iUAunZN+FG55L21y+uP7zsGX06OXDQ/viKw==}
|
|
579
604
|
cpu: [arm64]
|
|
580
605
|
os: [linux]
|
|
606
|
+
libc: [musl]
|
|
581
607
|
|
|
582
608
|
'@unrs/resolver-binding-linux-ppc64-gnu@1.5.0':
|
|
583
609
|
resolution: {integrity: sha512-5bEmVcQw9js8JYM2LkUBw5SeELSIxX+qKf9bFrfFINKAp4noZ//hUxLpbF7u/3gTBN1GsER6xOzIZlw/VTdXtA==}
|
|
584
610
|
cpu: [ppc64]
|
|
585
611
|
os: [linux]
|
|
612
|
+
libc: [glibc]
|
|
586
613
|
|
|
587
614
|
'@unrs/resolver-binding-linux-riscv64-gnu@1.5.0':
|
|
588
615
|
resolution: {integrity: sha512-GGk/8TPUsf1Q99F+lzMdjE6sGL26uJCwQ9TlvBs8zR3cLQNw/MIumPN7zrs3GFGySjnwXc8gA6J3HKbejywmqA==}
|
|
589
616
|
cpu: [riscv64]
|
|
590
617
|
os: [linux]
|
|
618
|
+
libc: [glibc]
|
|
591
619
|
|
|
592
620
|
'@unrs/resolver-binding-linux-s390x-gnu@1.5.0':
|
|
593
621
|
resolution: {integrity: sha512-5uRkFYYVNAeVaA4W/CwugjFN3iDOHCPqsBLCCOoJiMfFMMz4evBRsg+498OFa9w6VcTn2bD5aI+RRayaIgk2Sw==}
|
|
594
622
|
cpu: [s390x]
|
|
595
623
|
os: [linux]
|
|
624
|
+
libc: [glibc]
|
|
596
625
|
|
|
597
626
|
'@unrs/resolver-binding-linux-x64-gnu@1.5.0':
|
|
598
627
|
resolution: {integrity: sha512-j905CZH3nehYy6NimNqC2B14pxn4Ltd7guKMyPTzKehbFXTUgihQS/ZfHQTdojkMzbSwBOSgq1dOrY+IpgxDsA==}
|
|
599
628
|
cpu: [x64]
|
|
600
629
|
os: [linux]
|
|
630
|
+
libc: [glibc]
|
|
601
631
|
|
|
602
632
|
'@unrs/resolver-binding-linux-x64-musl@1.5.0':
|
|
603
633
|
resolution: {integrity: sha512-dmLevQTuzQRwu5A+mvj54R5aye5I4PVKiWqGxg8tTaYP2k2oTs/3Mo8mgnhPk28VoYCi0fdFYpgzCd4AJndQvQ==}
|
|
604
634
|
cpu: [x64]
|
|
605
635
|
os: [linux]
|
|
636
|
+
libc: [musl]
|
|
606
637
|
|
|
607
638
|
'@unrs/resolver-binding-wasm32-wasi@1.5.0':
|
|
608
639
|
resolution: {integrity: sha512-LtJMhwu7avhoi+kKfAZOKN773RtzLBVVF90YJbB0wyMpUj9yQPeA+mteVUI9P70OG/opH47FeV5AWeaNWWgqJg==}
|
|
@@ -1306,24 +1337,28 @@ packages:
|
|
|
1306
1337
|
engines: {node: '>= 12.0.0'}
|
|
1307
1338
|
cpu: [arm64]
|
|
1308
1339
|
os: [linux]
|
|
1340
|
+
libc: [glibc]
|
|
1309
1341
|
|
|
1310
1342
|
lightningcss-linux-arm64-musl@1.29.2:
|
|
1311
1343
|
resolution: {integrity: sha512-Q64eM1bPlOOUgxFmoPUefqzY1yV3ctFPE6d/Vt7WzLW4rKTv7MyYNky+FWxRpLkNASTnKQUaiMJ87zNODIrrKQ==}
|
|
1312
1344
|
engines: {node: '>= 12.0.0'}
|
|
1313
1345
|
cpu: [arm64]
|
|
1314
1346
|
os: [linux]
|
|
1347
|
+
libc: [musl]
|
|
1315
1348
|
|
|
1316
1349
|
lightningcss-linux-x64-gnu@1.29.2:
|
|
1317
1350
|
resolution: {integrity: sha512-0v6idDCPG6epLXtBH/RPkHvYx74CVziHo6TMYga8O2EiQApnUPZsbR9nFNrg2cgBzk1AYqEd95TlrsL7nYABQg==}
|
|
1318
1351
|
engines: {node: '>= 12.0.0'}
|
|
1319
1352
|
cpu: [x64]
|
|
1320
1353
|
os: [linux]
|
|
1354
|
+
libc: [glibc]
|
|
1321
1355
|
|
|
1322
1356
|
lightningcss-linux-x64-musl@1.29.2:
|
|
1323
1357
|
resolution: {integrity: sha512-rMpz2yawkgGT8RULc5S4WiZopVMOFWjiItBT7aSfDX4NQav6M44rhn5hjtkKzB+wMTRlLLqxkeYEtQ3dd9696w==}
|
|
1324
1358
|
engines: {node: '>= 12.0.0'}
|
|
1325
1359
|
cpu: [x64]
|
|
1326
1360
|
os: [linux]
|
|
1361
|
+
libc: [musl]
|
|
1327
1362
|
|
|
1328
1363
|
lightningcss-win32-arm64-msvc@1.29.2:
|
|
1329
1364
|
resolution: {integrity: sha512-nL7zRW6evGQqYVu/bKGK+zShyz8OVzsCotFgc7judbt6wnB2KbiKKJwBE4SGoDBQ1O94RjW4asrCjQL4i8Fhbw==}
|