@benjos/create-boilerplate 1.5.2 → 1.5.6

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 (108) hide show
  1. package/README.md +0 -4
  2. package/dist/constants.d.ts +8 -0
  3. package/dist/constants.d.ts.map +1 -0
  4. package/dist/constants.js +18 -0
  5. package/dist/constants.js.map +1 -0
  6. package/dist/constants.test.d.ts +2 -0
  7. package/dist/constants.test.d.ts.map +1 -0
  8. package/dist/constants.test.js +30 -0
  9. package/dist/constants.test.js.map +1 -0
  10. package/dist/createProject.d.ts +2 -0
  11. package/dist/createProject.d.ts.map +1 -0
  12. package/dist/createProject.js +52 -0
  13. package/dist/createProject.js.map +1 -0
  14. package/dist/createProject.test.d.ts +2 -0
  15. package/dist/createProject.test.d.ts.map +1 -0
  16. package/dist/createProject.test.js +85 -0
  17. package/dist/createProject.test.js.map +1 -0
  18. package/dist/index.js +16 -73
  19. package/dist/index.js.map +1 -1
  20. package/dist/prompts.d.ts +4 -0
  21. package/dist/prompts.d.ts.map +1 -0
  22. package/dist/prompts.js +26 -0
  23. package/dist/prompts.js.map +1 -0
  24. package/dist/prompts.test.d.ts +2 -0
  25. package/dist/prompts.test.d.ts.map +1 -0
  26. package/dist/prompts.test.js +50 -0
  27. package/dist/prompts.test.js.map +1 -0
  28. package/dist/types.d.ts +13 -0
  29. package/dist/types.d.ts.map +1 -0
  30. package/dist/types.js +7 -0
  31. package/dist/types.js.map +1 -0
  32. package/package.json +8 -7
  33. package/template-vanilla/package-lock.json +1000 -1476
  34. package/template-vanilla/package.json +11 -11
  35. package/template-vanilla/src/experiences/Experience.ts +1 -1
  36. package/template-vanilla/src/experiences/constants/experiences/ViewId.ts +2 -7
  37. package/template-vanilla/src/experiences/engines/threes/app/MainThreeApp.ts +8 -5
  38. package/template-vanilla/src/experiences/managers/LoaderManager.ts +4 -5
  39. package/template-vanilla/src/experiences/materials/threes/loaders/LoaderMaterial.ts +8 -5
  40. package/template-vanilla/src/experiences/views/threes/bases/ThreeViewBase.ts +1 -1
  41. package/{template-vue/src/experiences/views/threes/worlds/components/actors/bases → template-vanilla/src/experiences/views/threes/bases/components}/ThreeAnimatedModelBase.ts +3 -3
  42. package/template-vanilla/src/experiences/views/threes/{worlds/components/actors/bases → bases/components}/ThreeModelBase.ts +3 -3
  43. package/template-vanilla/src/experiences/views/threes/loaders/components/TemplateLoaderThreeActor.ts +1 -1
  44. package/template-vanilla/src/experiences/views/threes/worlds/World2ThreeView.ts +5 -5
  45. package/template-vanilla/src/experiences/views/threes/worlds/WorldThreeView.ts +5 -5
  46. package/template-vanilla/src/experiences/views/threes/worlds/components/Environment.ts +1 -1
  47. package/template-vanilla/src/experiences/views/threes/worlds/components/{actors/TemplateFont.ts → TemplateFont.ts} +3 -3
  48. package/template-vanilla/src/experiences/views/threes/worlds/components/{actors/TemplateMesh.ts → TemplateMesh.ts} +3 -3
  49. package/template-vanilla/src/experiences/views/threes/worlds/components/{actors/TemplateMesh2.ts → TemplateMesh2.ts} +3 -3
  50. package/template-vanilla/src/experiences/views/threes/worlds/components/{actors/TemplateModel.ts → TemplateModel.ts} +4 -4
  51. package/template-vanilla/tsconfig.json +3 -3
  52. package/template-vue/package-lock.json +639 -1127
  53. package/template-vue/package.json +12 -12
  54. package/template-vue/src/experiences/Experience.ts +1 -1
  55. package/template-vue/src/experiences/cameras/threes/DebugThreeCameraController.ts +1 -1
  56. package/template-vue/src/experiences/cameras/threes/LoaderThreeCameraController.ts +1 -1
  57. package/template-vue/src/experiences/cameras/threes/MainThreeCameraController.ts +1 -1
  58. package/template-vue/src/experiences/cameras/threes/bases/ThreeCameraControllerBase.ts +1 -1
  59. package/template-vue/src/experiences/constants/experiences/ViewId.ts +2 -7
  60. package/template-vue/src/experiences/engines/threes/app/MainThreeApp.ts +8 -5
  61. package/template-vue/src/experiences/managers/LoaderManager.ts +4 -5
  62. package/template-vue/src/experiences/materials/threes/loaders/LoaderMaterial.ts +8 -5
  63. package/template-vue/src/experiences/views/threes/bases/ThreeViewBase.ts +1 -1
  64. package/{template-vanilla/src/experiences/views/threes/worlds/components/actors/bases → template-vue/src/experiences/views/threes/bases/components}/ThreeAnimatedModelBase.ts +3 -3
  65. package/template-vue/src/experiences/views/threes/{worlds/components/actors/bases → bases/components}/ThreeModelBase.ts +3 -3
  66. package/template-vue/src/experiences/views/threes/loaders/components/TemplateLoaderThreeActor.ts +1 -1
  67. package/template-vue/src/experiences/views/threes/worlds/World2ThreeView.ts +5 -5
  68. package/template-vue/src/experiences/views/threes/worlds/WorldThreeView.ts +5 -5
  69. package/template-vue/src/experiences/views/threes/worlds/components/Environment.ts +1 -1
  70. package/template-vue/src/experiences/views/threes/worlds/components/{actors/TemplateFont.ts → TemplateFont.ts} +3 -3
  71. package/template-vue/src/experiences/views/threes/worlds/components/{actors/TemplateMesh.ts → TemplateMesh.ts} +3 -3
  72. package/template-vue/src/experiences/views/threes/worlds/components/{actors/TemplateMesh2.ts → TemplateMesh2.ts} +3 -3
  73. package/template-vue/src/experiences/views/threes/worlds/components/{actors/TemplateModel.ts → TemplateModel.ts} +4 -4
  74. package/template-vue/tsconfig.app.json +1 -7
  75. package/template-vue/tsconfig.node.json +0 -1
  76. package/template-react/.prettierignore +0 -6
  77. package/template-react/.prettierrc +0 -10
  78. package/template-react/assets_source/.gitkeep +0 -0
  79. package/template-react/eslint.config.js +0 -23
  80. package/template-react/index.html +0 -17
  81. package/template-react/package-lock.json +0 -4455
  82. package/template-react/package.json +0 -46
  83. package/template-react/public/assets/fonts/LICENSE +0 -13
  84. package/template-react/public/assets/fonts/template.typeface.json +0 -1
  85. package/template-react/public/assets/hdrs/template.hdr +0 -0
  86. package/template-react/public/assets/icons/benjosLogoBlack.svg +0 -5
  87. package/template-react/public/assets/loaders/draco/README.md +0 -32
  88. package/template-react/public/assets/loaders/draco/draco_decoder.js +0 -34
  89. package/template-react/public/assets/loaders/draco/draco_decoder.wasm +0 -0
  90. package/template-react/public/assets/loaders/draco/draco_encoder.js +0 -33
  91. package/template-react/public/assets/loaders/draco/draco_wasm_wrapper.js +0 -117
  92. package/template-react/public/assets/loaders/draco/gltf/draco_decoder.js +0 -33
  93. package/template-react/public/assets/loaders/draco/gltf/draco_decoder.wasm +0 -0
  94. package/template-react/public/assets/loaders/draco/gltf/draco_encoder.js +0 -33
  95. package/template-react/public/assets/loaders/draco/gltf/draco_wasm_wrapper.js +0 -116
  96. package/template-react/public/assets/models/template.glb +0 -0
  97. package/template-react/public/assets/textures/template.jpg +0 -0
  98. package/template-react/readme.md +0 -31
  99. package/template-react/src/App.css +0 -42
  100. package/template-react/src/App.tsx +0 -10
  101. package/template-react/src/index.css +0 -68
  102. package/template-react/src/main.tsx +0 -10
  103. package/template-react/tsconfig.app.json +0 -34
  104. package/template-react/tsconfig.json +0 -7
  105. package/template-react/tsconfig.node.json +0 -26
  106. package/template-react/vite.config.ts +0 -29
  107. /package/template-vanilla/src/experiences/views/threes/{worlds/components/actors/bases → bases/components}/ThreeActorBase.ts +0 -0
  108. /package/template-vue/src/experiences/views/threes/{worlds/components/actors/bases → bases/components}/ThreeActorBase.ts +0 -0
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "template-vue",
3
- "version": "1.4.7",
3
+ "version": "1.5.6",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "template-vue",
9
- "version": "1.4.7",
9
+ "version": "1.5.6",
10
10
  "dependencies": {
11
11
  "@benjos/cookware": "^1.0.4",
12
12
  "@benjos/spices": "^1.0.1",
@@ -14,26 +14,26 @@
14
14
  "gsap": "^3.14.2",
15
15
  "howler": "^2.2.4",
16
16
  "lil-gui": "^0.21.0",
17
- "three": "^0.182.0",
17
+ "three": "^0.183.2",
18
18
  "vue": "^3.5.30"
19
19
  },
20
20
  "devDependencies": {
21
- "@eslint/js": "^9.39.2",
21
+ "@eslint/js": "^10.0.1",
22
22
  "@types/howler": "^2.2.12",
23
- "@types/three": "^0.182.0",
23
+ "@types/three": "^0.183.1",
24
24
  "@vitejs/plugin-vue": "^6.0.5",
25
25
  "@vue/tsconfig": "^0.9.0",
26
- "eslint": "^9.39.2",
26
+ "eslint": "^10.1.0",
27
27
  "eslint-config-prettier": "^10.1.8",
28
- "eslint-plugin-prettier": "^5.5.4",
29
- "prettier": "^3.7.4",
30
- "sass-embedded": "^1.97.1",
28
+ "eslint-plugin-prettier": "^5.5.5",
29
+ "prettier": "^3.8.1",
30
+ "sass-embedded": "^1.98.0",
31
31
  "three-perf": "^1.0.11",
32
32
  "typescript": "~5.9.3",
33
- "typescript-eslint": "^8.50.1",
34
- "vite": "^7.3.0",
35
- "vite-plugin-glsl": "^1.5.5",
36
- "vue-tsc": "^3.2.5"
33
+ "typescript-eslint": "^8.57.1",
34
+ "vite": "^8.0.1",
35
+ "vite-plugin-glsl": "^1.5.6",
36
+ "vue-tsc": "^3.2.6"
37
37
  }
38
38
  },
39
39
  "node_modules/@babel/helper-string-parser": {
@@ -121,446 +121,38 @@
121
121
  "dev": true,
122
122
  "license": "Apache-2.0"
123
123
  },
124
- "node_modules/@esbuild/aix-ppc64": {
125
- "version": "0.27.4",
126
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.4.tgz",
127
- "integrity": "sha512-cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==",
128
- "cpu": [
129
- "ppc64"
130
- ],
131
- "dev": true,
132
- "license": "MIT",
133
- "optional": true,
134
- "os": [
135
- "aix"
136
- ],
137
- "engines": {
138
- "node": ">=18"
139
- }
140
- },
141
- "node_modules/@esbuild/android-arm": {
142
- "version": "0.27.4",
143
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.4.tgz",
144
- "integrity": "sha512-X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==",
145
- "cpu": [
146
- "arm"
147
- ],
148
- "dev": true,
149
- "license": "MIT",
150
- "optional": true,
151
- "os": [
152
- "android"
153
- ],
154
- "engines": {
155
- "node": ">=18"
156
- }
157
- },
158
- "node_modules/@esbuild/android-arm64": {
159
- "version": "0.27.4",
160
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.4.tgz",
161
- "integrity": "sha512-gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==",
162
- "cpu": [
163
- "arm64"
164
- ],
165
- "dev": true,
166
- "license": "MIT",
167
- "optional": true,
168
- "os": [
169
- "android"
170
- ],
171
- "engines": {
172
- "node": ">=18"
173
- }
174
- },
175
- "node_modules/@esbuild/android-x64": {
176
- "version": "0.27.4",
177
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.4.tgz",
178
- "integrity": "sha512-PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==",
179
- "cpu": [
180
- "x64"
181
- ],
182
- "dev": true,
183
- "license": "MIT",
184
- "optional": true,
185
- "os": [
186
- "android"
187
- ],
188
- "engines": {
189
- "node": ">=18"
190
- }
191
- },
192
- "node_modules/@esbuild/darwin-arm64": {
193
- "version": "0.27.4",
194
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.4.tgz",
195
- "integrity": "sha512-b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==",
196
- "cpu": [
197
- "arm64"
198
- ],
199
- "dev": true,
200
- "license": "MIT",
201
- "optional": true,
202
- "os": [
203
- "darwin"
204
- ],
205
- "engines": {
206
- "node": ">=18"
207
- }
208
- },
209
- "node_modules/@esbuild/darwin-x64": {
210
- "version": "0.27.4",
211
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.4.tgz",
212
- "integrity": "sha512-sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==",
213
- "cpu": [
214
- "x64"
215
- ],
216
- "dev": true,
217
- "license": "MIT",
218
- "optional": true,
219
- "os": [
220
- "darwin"
221
- ],
222
- "engines": {
223
- "node": ">=18"
224
- }
225
- },
226
- "node_modules/@esbuild/freebsd-arm64": {
227
- "version": "0.27.4",
228
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.4.tgz",
229
- "integrity": "sha512-jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==",
230
- "cpu": [
231
- "arm64"
232
- ],
233
- "dev": true,
234
- "license": "MIT",
235
- "optional": true,
236
- "os": [
237
- "freebsd"
238
- ],
239
- "engines": {
240
- "node": ">=18"
241
- }
242
- },
243
- "node_modules/@esbuild/freebsd-x64": {
244
- "version": "0.27.4",
245
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.4.tgz",
246
- "integrity": "sha512-2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==",
247
- "cpu": [
248
- "x64"
249
- ],
250
- "dev": true,
251
- "license": "MIT",
252
- "optional": true,
253
- "os": [
254
- "freebsd"
255
- ],
256
- "engines": {
257
- "node": ">=18"
258
- }
259
- },
260
- "node_modules/@esbuild/linux-arm": {
261
- "version": "0.27.4",
262
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.4.tgz",
263
- "integrity": "sha512-aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==",
264
- "cpu": [
265
- "arm"
266
- ],
267
- "dev": true,
268
- "license": "MIT",
269
- "optional": true,
270
- "os": [
271
- "linux"
272
- ],
273
- "engines": {
274
- "node": ">=18"
275
- }
276
- },
277
- "node_modules/@esbuild/linux-arm64": {
278
- "version": "0.27.4",
279
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.4.tgz",
280
- "integrity": "sha512-7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==",
281
- "cpu": [
282
- "arm64"
283
- ],
284
- "dev": true,
285
- "license": "MIT",
286
- "optional": true,
287
- "os": [
288
- "linux"
289
- ],
290
- "engines": {
291
- "node": ">=18"
292
- }
293
- },
294
- "node_modules/@esbuild/linux-ia32": {
295
- "version": "0.27.4",
296
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.4.tgz",
297
- "integrity": "sha512-oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==",
298
- "cpu": [
299
- "ia32"
300
- ],
301
- "dev": true,
302
- "license": "MIT",
303
- "optional": true,
304
- "os": [
305
- "linux"
306
- ],
307
- "engines": {
308
- "node": ">=18"
309
- }
310
- },
311
- "node_modules/@esbuild/linux-loong64": {
312
- "version": "0.27.4",
313
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.4.tgz",
314
- "integrity": "sha512-8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==",
315
- "cpu": [
316
- "loong64"
317
- ],
318
- "dev": true,
319
- "license": "MIT",
320
- "optional": true,
321
- "os": [
322
- "linux"
323
- ],
324
- "engines": {
325
- "node": ">=18"
326
- }
327
- },
328
- "node_modules/@esbuild/linux-mips64el": {
329
- "version": "0.27.4",
330
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.4.tgz",
331
- "integrity": "sha512-1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==",
332
- "cpu": [
333
- "mips64el"
334
- ],
335
- "dev": true,
336
- "license": "MIT",
337
- "optional": true,
338
- "os": [
339
- "linux"
340
- ],
341
- "engines": {
342
- "node": ">=18"
343
- }
344
- },
345
- "node_modules/@esbuild/linux-ppc64": {
346
- "version": "0.27.4",
347
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.4.tgz",
348
- "integrity": "sha512-tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==",
349
- "cpu": [
350
- "ppc64"
351
- ],
124
+ "node_modules/@emnapi/core": {
125
+ "version": "1.9.1",
126
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.9.1.tgz",
127
+ "integrity": "sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==",
352
128
  "dev": true,
353
129
  "license": "MIT",
354
130
  "optional": true,
355
- "os": [
356
- "linux"
357
- ],
358
- "engines": {
359
- "node": ">=18"
360
- }
361
- },
362
- "node_modules/@esbuild/linux-riscv64": {
363
- "version": "0.27.4",
364
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.4.tgz",
365
- "integrity": "sha512-BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==",
366
- "cpu": [
367
- "riscv64"
368
- ],
369
- "dev": true,
370
- "license": "MIT",
371
- "optional": true,
372
- "os": [
373
- "linux"
374
- ],
375
- "engines": {
376
- "node": ">=18"
377
- }
378
- },
379
- "node_modules/@esbuild/linux-s390x": {
380
- "version": "0.27.4",
381
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.4.tgz",
382
- "integrity": "sha512-+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==",
383
- "cpu": [
384
- "s390x"
385
- ],
386
- "dev": true,
387
- "license": "MIT",
388
- "optional": true,
389
- "os": [
390
- "linux"
391
- ],
392
- "engines": {
393
- "node": ">=18"
394
- }
395
- },
396
- "node_modules/@esbuild/linux-x64": {
397
- "version": "0.27.4",
398
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.4.tgz",
399
- "integrity": "sha512-S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==",
400
- "cpu": [
401
- "x64"
402
- ],
403
- "dev": true,
404
- "license": "MIT",
405
- "optional": true,
406
- "os": [
407
- "linux"
408
- ],
409
- "engines": {
410
- "node": ">=18"
411
- }
412
- },
413
- "node_modules/@esbuild/netbsd-arm64": {
414
- "version": "0.27.4",
415
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.4.tgz",
416
- "integrity": "sha512-xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==",
417
- "cpu": [
418
- "arm64"
419
- ],
420
- "dev": true,
421
- "license": "MIT",
422
- "optional": true,
423
- "os": [
424
- "netbsd"
425
- ],
426
- "engines": {
427
- "node": ">=18"
428
- }
429
- },
430
- "node_modules/@esbuild/netbsd-x64": {
431
- "version": "0.27.4",
432
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.4.tgz",
433
- "integrity": "sha512-RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==",
434
- "cpu": [
435
- "x64"
436
- ],
437
- "dev": true,
438
- "license": "MIT",
439
- "optional": true,
440
- "os": [
441
- "netbsd"
442
- ],
443
- "engines": {
444
- "node": ">=18"
445
- }
446
- },
447
- "node_modules/@esbuild/openbsd-arm64": {
448
- "version": "0.27.4",
449
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.4.tgz",
450
- "integrity": "sha512-2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==",
451
- "cpu": [
452
- "arm64"
453
- ],
454
- "dev": true,
455
- "license": "MIT",
456
- "optional": true,
457
- "os": [
458
- "openbsd"
459
- ],
460
- "engines": {
461
- "node": ">=18"
462
- }
463
- },
464
- "node_modules/@esbuild/openbsd-x64": {
465
- "version": "0.27.4",
466
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.4.tgz",
467
- "integrity": "sha512-u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==",
468
- "cpu": [
469
- "x64"
470
- ],
471
- "dev": true,
472
- "license": "MIT",
473
- "optional": true,
474
- "os": [
475
- "openbsd"
476
- ],
477
- "engines": {
478
- "node": ">=18"
479
- }
480
- },
481
- "node_modules/@esbuild/openharmony-arm64": {
482
- "version": "0.27.4",
483
- "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.4.tgz",
484
- "integrity": "sha512-JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==",
485
- "cpu": [
486
- "arm64"
487
- ],
488
- "dev": true,
489
- "license": "MIT",
490
- "optional": true,
491
- "os": [
492
- "openharmony"
493
- ],
494
- "engines": {
495
- "node": ">=18"
496
- }
497
- },
498
- "node_modules/@esbuild/sunos-x64": {
499
- "version": "0.27.4",
500
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.4.tgz",
501
- "integrity": "sha512-/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==",
502
- "cpu": [
503
- "x64"
504
- ],
505
- "dev": true,
506
- "license": "MIT",
507
- "optional": true,
508
- "os": [
509
- "sunos"
510
- ],
511
- "engines": {
512
- "node": ">=18"
131
+ "dependencies": {
132
+ "@emnapi/wasi-threads": "1.2.0",
133
+ "tslib": "^2.4.0"
513
134
  }
514
135
  },
515
- "node_modules/@esbuild/win32-arm64": {
516
- "version": "0.27.4",
517
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.4.tgz",
518
- "integrity": "sha512-Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==",
519
- "cpu": [
520
- "arm64"
521
- ],
136
+ "node_modules/@emnapi/runtime": {
137
+ "version": "1.9.1",
138
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.9.1.tgz",
139
+ "integrity": "sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==",
522
140
  "dev": true,
523
141
  "license": "MIT",
524
142
  "optional": true,
525
- "os": [
526
- "win32"
527
- ],
528
- "engines": {
529
- "node": ">=18"
530
- }
531
- },
532
- "node_modules/@esbuild/win32-ia32": {
533
- "version": "0.27.4",
534
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.4.tgz",
535
- "integrity": "sha512-DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==",
536
- "cpu": [
537
- "ia32"
538
- ],
539
- "dev": true,
540
- "license": "MIT",
541
- "optional": true,
542
- "os": [
543
- "win32"
544
- ],
545
- "engines": {
546
- "node": ">=18"
143
+ "dependencies": {
144
+ "tslib": "^2.4.0"
547
145
  }
548
146
  },
549
- "node_modules/@esbuild/win32-x64": {
550
- "version": "0.27.4",
551
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.4.tgz",
552
- "integrity": "sha512-+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==",
553
- "cpu": [
554
- "x64"
555
- ],
147
+ "node_modules/@emnapi/wasi-threads": {
148
+ "version": "1.2.0",
149
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.0.tgz",
150
+ "integrity": "sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==",
556
151
  "dev": true,
557
152
  "license": "MIT",
558
153
  "optional": true,
559
- "os": [
560
- "win32"
561
- ],
562
- "engines": {
563
- "node": ">=18"
154
+ "dependencies": {
155
+ "tslib": "^2.4.0"
564
156
  }
565
157
  },
566
158
  "node_modules/@eslint-community/eslint-utils": {
@@ -606,105 +198,89 @@
606
198
  }
607
199
  },
608
200
  "node_modules/@eslint/config-array": {
609
- "version": "0.21.2",
610
- "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz",
611
- "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==",
201
+ "version": "0.23.3",
202
+ "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.23.3.tgz",
203
+ "integrity": "sha512-j+eEWmB6YYLwcNOdlwQ6L2OsptI/LO6lNBuLIqe5R7RetD658HLoF+Mn7LzYmAWWNNzdC6cqP+L6r8ujeYXWLw==",
612
204
  "dev": true,
613
205
  "license": "Apache-2.0",
614
206
  "dependencies": {
615
- "@eslint/object-schema": "^2.1.7",
207
+ "@eslint/object-schema": "^3.0.3",
616
208
  "debug": "^4.3.1",
617
- "minimatch": "^3.1.5"
209
+ "minimatch": "^10.2.4"
618
210
  },
619
211
  "engines": {
620
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
212
+ "node": "^20.19.0 || ^22.13.0 || >=24"
621
213
  }
622
214
  },
623
215
  "node_modules/@eslint/config-helpers": {
624
- "version": "0.4.2",
625
- "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz",
626
- "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==",
216
+ "version": "0.5.3",
217
+ "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.5.3.tgz",
218
+ "integrity": "sha512-lzGN0onllOZCGroKJmRwY6QcEHxbjBw1gwB8SgRSqK8YbbtEXMvKynsXc3553ckIEBxsbMBU7oOZXKIPGZNeZw==",
627
219
  "dev": true,
628
220
  "license": "Apache-2.0",
629
221
  "dependencies": {
630
- "@eslint/core": "^0.17.0"
222
+ "@eslint/core": "^1.1.1"
631
223
  },
632
224
  "engines": {
633
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
225
+ "node": "^20.19.0 || ^22.13.0 || >=24"
634
226
  }
635
227
  },
636
228
  "node_modules/@eslint/core": {
637
- "version": "0.17.0",
638
- "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz",
639
- "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==",
229
+ "version": "1.1.1",
230
+ "resolved": "https://registry.npmjs.org/@eslint/core/-/core-1.1.1.tgz",
231
+ "integrity": "sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ==",
640
232
  "dev": true,
641
233
  "license": "Apache-2.0",
642
234
  "dependencies": {
643
235
  "@types/json-schema": "^7.0.15"
644
236
  },
645
237
  "engines": {
646
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
647
- }
648
- },
649
- "node_modules/@eslint/eslintrc": {
650
- "version": "3.3.5",
651
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.5.tgz",
652
- "integrity": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==",
653
- "dev": true,
654
- "license": "MIT",
655
- "dependencies": {
656
- "ajv": "^6.14.0",
657
- "debug": "^4.3.2",
658
- "espree": "^10.0.1",
659
- "globals": "^14.0.0",
660
- "ignore": "^5.2.0",
661
- "import-fresh": "^3.2.1",
662
- "js-yaml": "^4.1.1",
663
- "minimatch": "^3.1.5",
664
- "strip-json-comments": "^3.1.1"
665
- },
666
- "engines": {
667
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
668
- },
669
- "funding": {
670
- "url": "https://opencollective.com/eslint"
238
+ "node": "^20.19.0 || ^22.13.0 || >=24"
671
239
  }
672
240
  },
673
241
  "node_modules/@eslint/js": {
674
- "version": "9.39.4",
675
- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.4.tgz",
676
- "integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==",
242
+ "version": "10.0.1",
243
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-10.0.1.tgz",
244
+ "integrity": "sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==",
677
245
  "dev": true,
678
246
  "license": "MIT",
679
247
  "engines": {
680
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
248
+ "node": "^20.19.0 || ^22.13.0 || >=24"
681
249
  },
682
250
  "funding": {
683
251
  "url": "https://eslint.org/donate"
252
+ },
253
+ "peerDependencies": {
254
+ "eslint": "^10.0.0"
255
+ },
256
+ "peerDependenciesMeta": {
257
+ "eslint": {
258
+ "optional": true
259
+ }
684
260
  }
685
261
  },
686
262
  "node_modules/@eslint/object-schema": {
687
- "version": "2.1.7",
688
- "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz",
689
- "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==",
263
+ "version": "3.0.3",
264
+ "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-3.0.3.tgz",
265
+ "integrity": "sha512-iM869Pugn9Nsxbh/YHRqYiqd23AmIbxJOcpUMOuWCVNdoQJ5ZtwL6h3t0bcZzJUlC3Dq9jCFCESBZnX0GTv7iQ==",
690
266
  "dev": true,
691
267
  "license": "Apache-2.0",
692
268
  "engines": {
693
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
269
+ "node": "^20.19.0 || ^22.13.0 || >=24"
694
270
  }
695
271
  },
696
272
  "node_modules/@eslint/plugin-kit": {
697
- "version": "0.4.1",
698
- "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz",
699
- "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==",
273
+ "version": "0.6.1",
274
+ "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.6.1.tgz",
275
+ "integrity": "sha512-iH1B076HoAshH1mLpHMgwdGeTs0CYwL0SPMkGuSebZrwBp16v415e9NZXg2jtrqPVQjf6IANe2Vtlr5KswtcZQ==",
700
276
  "dev": true,
701
277
  "license": "Apache-2.0",
702
278
  "dependencies": {
703
- "@eslint/core": "^0.17.0",
279
+ "@eslint/core": "^1.1.1",
704
280
  "levn": "^0.4.1"
705
281
  },
706
282
  "engines": {
707
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
283
+ "node": "^20.19.0 || ^22.13.0 || >=24"
708
284
  }
709
285
  },
710
286
  "node_modules/@humanfs/core": {
@@ -765,6 +341,33 @@
765
341
  "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
766
342
  "license": "MIT"
767
343
  },
344
+ "node_modules/@napi-rs/wasm-runtime": {
345
+ "version": "1.1.1",
346
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.1.tgz",
347
+ "integrity": "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==",
348
+ "dev": true,
349
+ "license": "MIT",
350
+ "optional": true,
351
+ "dependencies": {
352
+ "@emnapi/core": "^1.7.1",
353
+ "@emnapi/runtime": "^1.7.1",
354
+ "@tybys/wasm-util": "^0.10.1"
355
+ },
356
+ "funding": {
357
+ "type": "github",
358
+ "url": "https://github.com/sponsors/Brooooooklyn"
359
+ }
360
+ },
361
+ "node_modules/@oxc-project/types": {
362
+ "version": "0.120.0",
363
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.120.0.tgz",
364
+ "integrity": "sha512-k1YNu55DuvAip/MGE1FTsIuU3FUCn6v/ujG9V7Nq5Df/kX2CWb13hhwD0lmJGMGqE+bE1MXvv9SZVnMzEXlWcg==",
365
+ "dev": true,
366
+ "license": "MIT",
367
+ "funding": {
368
+ "url": "https://github.com/sponsors/Boshen"
369
+ }
370
+ },
768
371
  "node_modules/@parcel/watcher": {
769
372
  "version": "2.5.6",
770
373
  "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.6.tgz",
@@ -1106,31 +709,10 @@
1106
709
  "url": "https://opencollective.com/pkgr"
1107
710
  }
1108
711
  },
1109
- "node_modules/@rolldown/pluginutils": {
1110
- "version": "1.0.0-rc.2",
1111
- "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.2.tgz",
1112
- "integrity": "sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==",
1113
- "dev": true,
1114
- "license": "MIT"
1115
- },
1116
- "node_modules/@rollup/rollup-android-arm-eabi": {
1117
- "version": "4.59.0",
1118
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz",
1119
- "integrity": "sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==",
1120
- "cpu": [
1121
- "arm"
1122
- ],
1123
- "dev": true,
1124
- "license": "MIT",
1125
- "optional": true,
1126
- "os": [
1127
- "android"
1128
- ]
1129
- },
1130
- "node_modules/@rollup/rollup-android-arm64": {
1131
- "version": "4.59.0",
1132
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz",
1133
- "integrity": "sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==",
712
+ "node_modules/@rolldown/binding-android-arm64": {
713
+ "version": "1.0.0-rc.10",
714
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.10.tgz",
715
+ "integrity": "sha512-jOHxwXhxmFKuXztiu1ORieJeTbx5vrTkcOkkkn2d35726+iwhrY1w/+nYY/AGgF12thg33qC3R1LMBF5tHTZHg==",
1134
716
  "cpu": [
1135
717
  "arm64"
1136
718
  ],
@@ -1139,238 +721,143 @@
1139
721
  "optional": true,
1140
722
  "os": [
1141
723
  "android"
1142
- ]
1143
- },
1144
- "node_modules/@rollup/rollup-darwin-arm64": {
1145
- "version": "4.59.0",
1146
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz",
1147
- "integrity": "sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==",
1148
- "cpu": [
1149
- "arm64"
1150
724
  ],
1151
- "dev": true,
1152
- "license": "MIT",
1153
- "optional": true,
1154
- "os": [
1155
- "darwin"
1156
- ]
725
+ "engines": {
726
+ "node": "^20.19.0 || >=22.12.0"
727
+ }
1157
728
  },
1158
- "node_modules/@rollup/rollup-darwin-x64": {
1159
- "version": "4.59.0",
1160
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz",
1161
- "integrity": "sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==",
729
+ "node_modules/@rolldown/binding-darwin-arm64": {
730
+ "version": "1.0.0-rc.10",
731
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.10.tgz",
732
+ "integrity": "sha512-gED05Teg/vtTZbIJBc4VNMAxAFDUPkuO/rAIyyxZjTj1a1/s6z5TII/5yMGZ0uLRCifEtwUQn8OlYzuYc0m70w==",
1162
733
  "cpu": [
1163
- "x64"
734
+ "arm64"
1164
735
  ],
1165
736
  "dev": true,
1166
737
  "license": "MIT",
1167
738
  "optional": true,
1168
739
  "os": [
1169
740
  "darwin"
1170
- ]
1171
- },
1172
- "node_modules/@rollup/rollup-freebsd-arm64": {
1173
- "version": "4.59.0",
1174
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz",
1175
- "integrity": "sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==",
1176
- "cpu": [
1177
- "arm64"
1178
741
  ],
1179
- "dev": true,
1180
- "license": "MIT",
1181
- "optional": true,
1182
- "os": [
1183
- "freebsd"
1184
- ]
742
+ "engines": {
743
+ "node": "^20.19.0 || >=22.12.0"
744
+ }
1185
745
  },
1186
- "node_modules/@rollup/rollup-freebsd-x64": {
1187
- "version": "4.59.0",
1188
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz",
1189
- "integrity": "sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==",
746
+ "node_modules/@rolldown/binding-darwin-x64": {
747
+ "version": "1.0.0-rc.10",
748
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.10.tgz",
749
+ "integrity": "sha512-rI15NcM1mA48lqrIxVkHfAqcyFLcQwyXWThy+BQ5+mkKKPvSO26ir+ZDp36AgYoYVkqvMcdS8zOE6SeBsR9e8A==",
1190
750
  "cpu": [
1191
751
  "x64"
1192
752
  ],
1193
- "dev": true,
1194
- "license": "MIT",
1195
- "optional": true,
1196
- "os": [
1197
- "freebsd"
1198
- ]
1199
- },
1200
- "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
1201
- "version": "4.59.0",
1202
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz",
1203
- "integrity": "sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==",
1204
- "cpu": [
1205
- "arm"
1206
- ],
1207
- "dev": true,
1208
- "libc": [
1209
- "glibc"
1210
- ],
1211
- "license": "MIT",
1212
- "optional": true,
1213
- "os": [
1214
- "linux"
1215
- ]
1216
- },
1217
- "node_modules/@rollup/rollup-linux-arm-musleabihf": {
1218
- "version": "4.59.0",
1219
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz",
1220
- "integrity": "sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==",
1221
- "cpu": [
1222
- "arm"
1223
- ],
1224
- "dev": true,
1225
- "libc": [
1226
- "musl"
1227
- ],
1228
- "license": "MIT",
1229
- "optional": true,
1230
- "os": [
1231
- "linux"
1232
- ]
1233
- },
1234
- "node_modules/@rollup/rollup-linux-arm64-gnu": {
1235
- "version": "4.59.0",
1236
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz",
1237
- "integrity": "sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==",
1238
- "cpu": [
1239
- "arm64"
1240
- ],
1241
- "dev": true,
1242
- "libc": [
1243
- "glibc"
1244
- ],
1245
- "license": "MIT",
1246
- "optional": true,
1247
- "os": [
1248
- "linux"
1249
- ]
1250
- },
1251
- "node_modules/@rollup/rollup-linux-arm64-musl": {
1252
- "version": "4.59.0",
1253
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz",
1254
- "integrity": "sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==",
1255
- "cpu": [
1256
- "arm64"
1257
- ],
1258
- "dev": true,
1259
- "libc": [
1260
- "musl"
1261
- ],
1262
- "license": "MIT",
1263
- "optional": true,
1264
- "os": [
1265
- "linux"
1266
- ]
1267
- },
1268
- "node_modules/@rollup/rollup-linux-loong64-gnu": {
1269
- "version": "4.59.0",
1270
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz",
1271
- "integrity": "sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==",
1272
- "cpu": [
1273
- "loong64"
1274
- ],
1275
- "dev": true,
1276
- "libc": [
1277
- "glibc"
1278
- ],
753
+ "dev": true,
1279
754
  "license": "MIT",
1280
755
  "optional": true,
1281
756
  "os": [
1282
- "linux"
1283
- ]
757
+ "darwin"
758
+ ],
759
+ "engines": {
760
+ "node": "^20.19.0 || >=22.12.0"
761
+ }
1284
762
  },
1285
- "node_modules/@rollup/rollup-linux-loong64-musl": {
1286
- "version": "4.59.0",
1287
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz",
1288
- "integrity": "sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==",
763
+ "node_modules/@rolldown/binding-freebsd-x64": {
764
+ "version": "1.0.0-rc.10",
765
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.10.tgz",
766
+ "integrity": "sha512-XZRXHdTa+4ME1MuDVp021+doQ+z6Ei4CCFmNc5/sKbqb8YmkiJdj8QKlV3rCI0AJtAeSB5n0WGPuJWNL9p/L2w==",
1289
767
  "cpu": [
1290
- "loong64"
768
+ "x64"
1291
769
  ],
1292
770
  "dev": true,
1293
- "libc": [
1294
- "musl"
1295
- ],
1296
771
  "license": "MIT",
1297
772
  "optional": true,
1298
773
  "os": [
1299
- "linux"
1300
- ]
774
+ "freebsd"
775
+ ],
776
+ "engines": {
777
+ "node": "^20.19.0 || >=22.12.0"
778
+ }
1301
779
  },
1302
- "node_modules/@rollup/rollup-linux-ppc64-gnu": {
1303
- "version": "4.59.0",
1304
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz",
1305
- "integrity": "sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==",
780
+ "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
781
+ "version": "1.0.0-rc.10",
782
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.10.tgz",
783
+ "integrity": "sha512-R0SQMRluISSLzFE20sPWYHVmJdDQnRyc/FzSCN72BqQmh2SOZUFG+N3/vBZpR4C6WpEUVYJLrYUXaj43sJsNLA==",
1306
784
  "cpu": [
1307
- "ppc64"
785
+ "arm"
1308
786
  ],
1309
787
  "dev": true,
1310
- "libc": [
1311
- "glibc"
1312
- ],
1313
788
  "license": "MIT",
1314
789
  "optional": true,
1315
790
  "os": [
1316
791
  "linux"
1317
- ]
792
+ ],
793
+ "engines": {
794
+ "node": "^20.19.0 || >=22.12.0"
795
+ }
1318
796
  },
1319
- "node_modules/@rollup/rollup-linux-ppc64-musl": {
1320
- "version": "4.59.0",
1321
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz",
1322
- "integrity": "sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==",
797
+ "node_modules/@rolldown/binding-linux-arm64-gnu": {
798
+ "version": "1.0.0-rc.10",
799
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.10.tgz",
800
+ "integrity": "sha512-Y1reMrV/o+cwpduYhJuOE3OMKx32RMYCidf14y+HssARRmhDuWXJ4yVguDg2R/8SyyGNo+auzz64LnPK9Hq6jg==",
1323
801
  "cpu": [
1324
- "ppc64"
802
+ "arm64"
1325
803
  ],
1326
804
  "dev": true,
1327
805
  "libc": [
1328
- "musl"
806
+ "glibc"
1329
807
  ],
1330
808
  "license": "MIT",
1331
809
  "optional": true,
1332
810
  "os": [
1333
811
  "linux"
1334
- ]
812
+ ],
813
+ "engines": {
814
+ "node": "^20.19.0 || >=22.12.0"
815
+ }
1335
816
  },
1336
- "node_modules/@rollup/rollup-linux-riscv64-gnu": {
1337
- "version": "4.59.0",
1338
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz",
1339
- "integrity": "sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==",
817
+ "node_modules/@rolldown/binding-linux-arm64-musl": {
818
+ "version": "1.0.0-rc.10",
819
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.10.tgz",
820
+ "integrity": "sha512-vELN+HNb2IzuzSBUOD4NHmP9yrGwl1DVM29wlQvx1OLSclL0NgVWnVDKl/8tEks79EFek/kebQKnNJkIAA4W2g==",
1340
821
  "cpu": [
1341
- "riscv64"
822
+ "arm64"
1342
823
  ],
1343
824
  "dev": true,
1344
825
  "libc": [
1345
- "glibc"
826
+ "musl"
1346
827
  ],
1347
828
  "license": "MIT",
1348
829
  "optional": true,
1349
830
  "os": [
1350
831
  "linux"
1351
- ]
832
+ ],
833
+ "engines": {
834
+ "node": "^20.19.0 || >=22.12.0"
835
+ }
1352
836
  },
1353
- "node_modules/@rollup/rollup-linux-riscv64-musl": {
1354
- "version": "4.59.0",
1355
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz",
1356
- "integrity": "sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==",
837
+ "node_modules/@rolldown/binding-linux-ppc64-gnu": {
838
+ "version": "1.0.0-rc.10",
839
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0-rc.10.tgz",
840
+ "integrity": "sha512-ZqrufYTgzxbHwpqOjzSsb0UV/aV2TFIY5rP8HdsiPTv/CuAgCRjM6s9cYFwQ4CNH+hf9Y4erHW1GjZuZ7WoI7w==",
1357
841
  "cpu": [
1358
- "riscv64"
842
+ "ppc64"
1359
843
  ],
1360
844
  "dev": true,
1361
845
  "libc": [
1362
- "musl"
846
+ "glibc"
1363
847
  ],
1364
848
  "license": "MIT",
1365
849
  "optional": true,
1366
850
  "os": [
1367
851
  "linux"
1368
- ]
852
+ ],
853
+ "engines": {
854
+ "node": "^20.19.0 || >=22.12.0"
855
+ }
1369
856
  },
1370
- "node_modules/@rollup/rollup-linux-s390x-gnu": {
1371
- "version": "4.59.0",
1372
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz",
1373
- "integrity": "sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==",
857
+ "node_modules/@rolldown/binding-linux-s390x-gnu": {
858
+ "version": "1.0.0-rc.10",
859
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0-rc.10.tgz",
860
+ "integrity": "sha512-gSlmVS1FZJSRicA6IyjoRoKAFK7IIHBs7xJuHRSmjImqk3mPPWbR7RhbnfH2G6bcmMEllCt2vQ/7u9e6bBnByg==",
1374
861
  "cpu": [
1375
862
  "s390x"
1376
863
  ],
@@ -1382,12 +869,15 @@
1382
869
  "optional": true,
1383
870
  "os": [
1384
871
  "linux"
1385
- ]
872
+ ],
873
+ "engines": {
874
+ "node": "^20.19.0 || >=22.12.0"
875
+ }
1386
876
  },
1387
- "node_modules/@rollup/rollup-linux-x64-gnu": {
1388
- "version": "4.59.0",
1389
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.59.0.tgz",
1390
- "integrity": "sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==",
877
+ "node_modules/@rolldown/binding-linux-x64-gnu": {
878
+ "version": "1.0.0-rc.10",
879
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.10.tgz",
880
+ "integrity": "sha512-eOCKUpluKgfObT2pHjztnaWEIbUabWzk3qPZ5PuacuPmr4+JtQG4k2vGTY0H15edaTnicgU428XW/IH6AimcQw==",
1391
881
  "cpu": [
1392
882
  "x64"
1393
883
  ],
@@ -1399,12 +889,15 @@
1399
889
  "optional": true,
1400
890
  "os": [
1401
891
  "linux"
1402
- ]
892
+ ],
893
+ "engines": {
894
+ "node": "^20.19.0 || >=22.12.0"
895
+ }
1403
896
  },
1404
- "node_modules/@rollup/rollup-linux-x64-musl": {
1405
- "version": "4.59.0",
1406
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.59.0.tgz",
1407
- "integrity": "sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==",
897
+ "node_modules/@rolldown/binding-linux-x64-musl": {
898
+ "version": "1.0.0-rc.10",
899
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.10.tgz",
900
+ "integrity": "sha512-Xdf2jQbfQowJnLcgYfD/m0Uu0Qj5OdxKallD78/IPPfzaiaI4KRAwZzHcKQ4ig1gtg1SuzC7jovNiM2TzQsBXA==",
1408
901
  "cpu": [
1409
902
  "x64"
1410
903
  ],
@@ -1416,26 +909,15 @@
1416
909
  "optional": true,
1417
910
  "os": [
1418
911
  "linux"
1419
- ]
1420
- },
1421
- "node_modules/@rollup/rollup-openbsd-x64": {
1422
- "version": "4.59.0",
1423
- "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz",
1424
- "integrity": "sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==",
1425
- "cpu": [
1426
- "x64"
1427
912
  ],
1428
- "dev": true,
1429
- "license": "MIT",
1430
- "optional": true,
1431
- "os": [
1432
- "openbsd"
1433
- ]
913
+ "engines": {
914
+ "node": "^20.19.0 || >=22.12.0"
915
+ }
1434
916
  },
1435
- "node_modules/@rollup/rollup-openharmony-arm64": {
1436
- "version": "4.59.0",
1437
- "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz",
1438
- "integrity": "sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==",
917
+ "node_modules/@rolldown/binding-openharmony-arm64": {
918
+ "version": "1.0.0-rc.10",
919
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.10.tgz",
920
+ "integrity": "sha512-o1hYe8hLi1EY6jgPFyxQgQ1wcycX+qz8eEbVmot2hFkgUzPxy9+kF0u0NIQBeDq+Mko47AkaFFaChcvZa9UX9Q==",
1439
921
  "cpu": [
1440
922
  "arm64"
1441
923
  ],
@@ -1444,40 +926,49 @@
1444
926
  "optional": true,
1445
927
  "os": [
1446
928
  "openharmony"
1447
- ]
929
+ ],
930
+ "engines": {
931
+ "node": "^20.19.0 || >=22.12.0"
932
+ }
1448
933
  },
1449
- "node_modules/@rollup/rollup-win32-arm64-msvc": {
1450
- "version": "4.59.0",
1451
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz",
1452
- "integrity": "sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==",
934
+ "node_modules/@rolldown/binding-wasm32-wasi": {
935
+ "version": "1.0.0-rc.10",
936
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.10.tgz",
937
+ "integrity": "sha512-Ugv9o7qYJudqQO5Y5y2N2SOo6S4WiqiNOpuQyoPInnhVzCY+wi/GHltcLHypG9DEUYMB0iTB/huJrpadiAcNcA==",
1453
938
  "cpu": [
1454
- "arm64"
939
+ "wasm32"
1455
940
  ],
1456
941
  "dev": true,
1457
942
  "license": "MIT",
1458
943
  "optional": true,
1459
- "os": [
1460
- "win32"
1461
- ]
944
+ "dependencies": {
945
+ "@napi-rs/wasm-runtime": "^1.1.1"
946
+ },
947
+ "engines": {
948
+ "node": ">=14.0.0"
949
+ }
1462
950
  },
1463
- "node_modules/@rollup/rollup-win32-ia32-msvc": {
1464
- "version": "4.59.0",
1465
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz",
1466
- "integrity": "sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==",
951
+ "node_modules/@rolldown/binding-win32-arm64-msvc": {
952
+ "version": "1.0.0-rc.10",
953
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.10.tgz",
954
+ "integrity": "sha512-7UODQb4fQUNT/vmgDZBl3XOBAIOutP5R3O/rkxg0aLfEGQ4opbCgU5vOw/scPe4xOqBwL9fw7/RP1vAMZ6QlAQ==",
1467
955
  "cpu": [
1468
- "ia32"
956
+ "arm64"
1469
957
  ],
1470
958
  "dev": true,
1471
959
  "license": "MIT",
1472
960
  "optional": true,
1473
961
  "os": [
1474
962
  "win32"
1475
- ]
963
+ ],
964
+ "engines": {
965
+ "node": "^20.19.0 || >=22.12.0"
966
+ }
1476
967
  },
1477
- "node_modules/@rollup/rollup-win32-x64-gnu": {
1478
- "version": "4.59.0",
1479
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz",
1480
- "integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==",
968
+ "node_modules/@rolldown/binding-win32-x64-msvc": {
969
+ "version": "1.0.0-rc.10",
970
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.10.tgz",
971
+ "integrity": "sha512-PYxKHMVHOb5NJuDL53vBUl1VwUjymDcYI6rzpIni0C9+9mTiJedvUxSk7/RPp7OOAm3v+EjgMu9bIy3N6b408w==",
1481
972
  "cpu": [
1482
973
  "x64"
1483
974
  ],
@@ -1486,21 +977,17 @@
1486
977
  "optional": true,
1487
978
  "os": [
1488
979
  "win32"
1489
- ]
1490
- },
1491
- "node_modules/@rollup/rollup-win32-x64-msvc": {
1492
- "version": "4.59.0",
1493
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz",
1494
- "integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==",
1495
- "cpu": [
1496
- "x64"
1497
980
  ],
981
+ "engines": {
982
+ "node": "^20.19.0 || >=22.12.0"
983
+ }
984
+ },
985
+ "node_modules/@rolldown/pluginutils": {
986
+ "version": "1.0.0-rc.2",
987
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.2.tgz",
988
+ "integrity": "sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==",
1498
989
  "dev": true,
1499
- "license": "MIT",
1500
- "optional": true,
1501
- "os": [
1502
- "win32"
1503
- ]
990
+ "license": "MIT"
1504
991
  },
1505
992
  "node_modules/@tweenjs/tween.js": {
1506
993
  "version": "23.1.3",
@@ -1509,6 +996,24 @@
1509
996
  "dev": true,
1510
997
  "license": "MIT"
1511
998
  },
999
+ "node_modules/@tybys/wasm-util": {
1000
+ "version": "0.10.1",
1001
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz",
1002
+ "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==",
1003
+ "dev": true,
1004
+ "license": "MIT",
1005
+ "optional": true,
1006
+ "dependencies": {
1007
+ "tslib": "^2.4.0"
1008
+ }
1009
+ },
1010
+ "node_modules/@types/esrecurse": {
1011
+ "version": "4.3.1",
1012
+ "resolved": "https://registry.npmjs.org/@types/esrecurse/-/esrecurse-4.3.1.tgz",
1013
+ "integrity": "sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==",
1014
+ "dev": true,
1015
+ "license": "MIT"
1016
+ },
1512
1017
  "node_modules/@types/estree": {
1513
1018
  "version": "1.0.8",
1514
1019
  "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
@@ -1538,9 +1043,9 @@
1538
1043
  "license": "MIT"
1539
1044
  },
1540
1045
  "node_modules/@types/three": {
1541
- "version": "0.182.0",
1542
- "resolved": "https://registry.npmjs.org/@types/three/-/three-0.182.0.tgz",
1543
- "integrity": "sha512-WByN9V3Sbwbe2OkWuSGyoqQO8Du6yhYaXtXLoA5FkKTUJorZ+yOHBZ35zUUPQXlAKABZmbYp5oAqpA4RBjtJ/Q==",
1046
+ "version": "0.183.1",
1047
+ "resolved": "https://registry.npmjs.org/@types/three/-/three-0.183.1.tgz",
1048
+ "integrity": "sha512-f2Pu5Hrepfgavttdye3PsH5RWyY/AvdZQwIVhrc4uNtvF7nOWJacQKcoVJn0S4f0yYbmAE6AR+ve7xDcuYtMGw==",
1544
1049
  "dev": true,
1545
1050
  "license": "MIT",
1546
1051
  "dependencies": {
@@ -1550,7 +1055,7 @@
1550
1055
  "@types/webxr": ">=0.5.17",
1551
1056
  "@webgpu/types": "*",
1552
1057
  "fflate": "~0.8.2",
1553
- "meshoptimizer": "~0.22.0"
1058
+ "meshoptimizer": "~1.0.1"
1554
1059
  }
1555
1060
  },
1556
1061
  "node_modules/@types/webxr": {
@@ -1748,45 +1253,6 @@
1748
1253
  "typescript": ">=4.8.4 <6.0.0"
1749
1254
  }
1750
1255
  },
1751
- "node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": {
1752
- "version": "4.0.4",
1753
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
1754
- "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
1755
- "dev": true,
1756
- "license": "MIT",
1757
- "engines": {
1758
- "node": "18 || 20 || >=22"
1759
- }
1760
- },
1761
- "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
1762
- "version": "5.0.4",
1763
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.4.tgz",
1764
- "integrity": "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==",
1765
- "dev": true,
1766
- "license": "MIT",
1767
- "dependencies": {
1768
- "balanced-match": "^4.0.2"
1769
- },
1770
- "engines": {
1771
- "node": "18 || 20 || >=22"
1772
- }
1773
- },
1774
- "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
1775
- "version": "10.2.4",
1776
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.4.tgz",
1777
- "integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==",
1778
- "dev": true,
1779
- "license": "BlueOak-1.0.0",
1780
- "dependencies": {
1781
- "brace-expansion": "^5.0.2"
1782
- },
1783
- "engines": {
1784
- "node": "18 || 20 || >=22"
1785
- },
1786
- "funding": {
1787
- "url": "https://github.com/sponsors/isaacs"
1788
- }
1789
- },
1790
1256
  "node_modules/@typescript-eslint/utils": {
1791
1257
  "version": "8.57.1",
1792
1258
  "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.57.1.tgz",
@@ -1829,19 +1295,6 @@
1829
1295
  "url": "https://opencollective.com/typescript-eslint"
1830
1296
  }
1831
1297
  },
1832
- "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": {
1833
- "version": "5.0.1",
1834
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz",
1835
- "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==",
1836
- "dev": true,
1837
- "license": "Apache-2.0",
1838
- "engines": {
1839
- "node": "^20.19.0 || ^22.13.0 || >=24"
1840
- },
1841
- "funding": {
1842
- "url": "https://opencollective.com/eslint"
1843
- }
1844
- },
1845
1298
  "node_modules/@vitejs/plugin-vue": {
1846
1299
  "version": "6.0.5",
1847
1300
  "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-6.0.5.tgz",
@@ -1939,9 +1392,9 @@
1939
1392
  }
1940
1393
  },
1941
1394
  "node_modules/@vue/language-core": {
1942
- "version": "3.2.5",
1943
- "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-3.2.5.tgz",
1944
- "integrity": "sha512-d3OIxN/+KRedeM5wQ6H6NIpwS3P5gC9nmyaHgBk+rO6dIsjY+tOh4UlPpiZbAh3YtLdCGEX4M16RmsBqPmJV+g==",
1395
+ "version": "3.2.6",
1396
+ "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-3.2.6.tgz",
1397
+ "integrity": "sha512-xYYYX3/aVup576tP/23sEUpgiEnujrENaoNRbaozC1/MA9I6EGFQRJb4xrt/MmUCAGlxTKL2RmT8JLTPqagCkg==",
1945
1398
  "dev": true,
1946
1399
  "license": "MIT",
1947
1400
  "dependencies": {
@@ -2077,36 +1530,16 @@
2077
1530
  "dev": true,
2078
1531
  "license": "MIT"
2079
1532
  },
2080
- "node_modules/ansi-styles": {
2081
- "version": "4.3.0",
2082
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
2083
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
1533
+ "node_modules/balanced-match": {
1534
+ "version": "4.0.4",
1535
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
1536
+ "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
2084
1537
  "dev": true,
2085
1538
  "license": "MIT",
2086
- "dependencies": {
2087
- "color-convert": "^2.0.1"
2088
- },
2089
1539
  "engines": {
2090
- "node": ">=8"
2091
- },
2092
- "funding": {
2093
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1540
+ "node": "18 || 20 || >=22"
2094
1541
  }
2095
1542
  },
2096
- "node_modules/argparse": {
2097
- "version": "2.0.1",
2098
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
2099
- "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
2100
- "dev": true,
2101
- "license": "Python-2.0"
2102
- },
2103
- "node_modules/balanced-match": {
2104
- "version": "1.0.2",
2105
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
2106
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
2107
- "dev": true,
2108
- "license": "MIT"
2109
- },
2110
1543
  "node_modules/bidi-js": {
2111
1544
  "version": "1.0.3",
2112
1545
  "resolved": "https://registry.npmjs.org/bidi-js/-/bidi-js-1.0.3.tgz",
@@ -2118,41 +1551,16 @@
2118
1551
  }
2119
1552
  },
2120
1553
  "node_modules/brace-expansion": {
2121
- "version": "1.1.12",
2122
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
2123
- "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
2124
- "dev": true,
2125
- "license": "MIT",
2126
- "dependencies": {
2127
- "balanced-match": "^1.0.0",
2128
- "concat-map": "0.0.1"
2129
- }
2130
- },
2131
- "node_modules/callsites": {
2132
- "version": "3.1.0",
2133
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
2134
- "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
2135
- "dev": true,
2136
- "license": "MIT",
2137
- "engines": {
2138
- "node": ">=6"
2139
- }
2140
- },
2141
- "node_modules/chalk": {
2142
- "version": "4.1.2",
2143
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
2144
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
1554
+ "version": "5.0.4",
1555
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.4.tgz",
1556
+ "integrity": "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==",
2145
1557
  "dev": true,
2146
1558
  "license": "MIT",
2147
1559
  "dependencies": {
2148
- "ansi-styles": "^4.1.0",
2149
- "supports-color": "^7.1.0"
1560
+ "balanced-match": "^4.0.2"
2150
1561
  },
2151
1562
  "engines": {
2152
- "node": ">=10"
2153
- },
2154
- "funding": {
2155
- "url": "https://github.com/chalk/chalk?sponsor=1"
1563
+ "node": "18 || 20 || >=22"
2156
1564
  }
2157
1565
  },
2158
1566
  "node_modules/chokidar": {
@@ -2172,26 +1580,6 @@
2172
1580
  "url": "https://paulmillr.com/funding/"
2173
1581
  }
2174
1582
  },
2175
- "node_modules/color-convert": {
2176
- "version": "2.0.1",
2177
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
2178
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
2179
- "dev": true,
2180
- "license": "MIT",
2181
- "dependencies": {
2182
- "color-name": "~1.1.4"
2183
- },
2184
- "engines": {
2185
- "node": ">=7.0.0"
2186
- }
2187
- },
2188
- "node_modules/color-name": {
2189
- "version": "1.1.4",
2190
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
2191
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
2192
- "dev": true,
2193
- "license": "MIT"
2194
- },
2195
1583
  "node_modules/colorjs.io": {
2196
1584
  "version": "0.5.2",
2197
1585
  "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.5.2.tgz",
@@ -2199,13 +1587,6 @@
2199
1587
  "dev": true,
2200
1588
  "license": "MIT"
2201
1589
  },
2202
- "node_modules/concat-map": {
2203
- "version": "0.0.1",
2204
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
2205
- "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
2206
- "dev": true,
2207
- "license": "MIT"
2208
- },
2209
1590
  "node_modules/cross-spawn": {
2210
1591
  "version": "7.0.6",
2211
1592
  "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
@@ -2258,7 +1639,6 @@
2258
1639
  "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
2259
1640
  "dev": true,
2260
1641
  "license": "Apache-2.0",
2261
- "optional": true,
2262
1642
  "engines": {
2263
1643
  "node": ">=8"
2264
1644
  }
@@ -2275,48 +1655,6 @@
2275
1655
  "url": "https://github.com/fb55/entities?sponsor=1"
2276
1656
  }
2277
1657
  },
2278
- "node_modules/esbuild": {
2279
- "version": "0.27.4",
2280
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.4.tgz",
2281
- "integrity": "sha512-Rq4vbHnYkK5fws5NF7MYTU68FPRE1ajX7heQ/8QXXWqNgqqJ/GkmmyxIzUnf2Sr/bakf8l54716CcMGHYhMrrQ==",
2282
- "dev": true,
2283
- "hasInstallScript": true,
2284
- "license": "MIT",
2285
- "bin": {
2286
- "esbuild": "bin/esbuild"
2287
- },
2288
- "engines": {
2289
- "node": ">=18"
2290
- },
2291
- "optionalDependencies": {
2292
- "@esbuild/aix-ppc64": "0.27.4",
2293
- "@esbuild/android-arm": "0.27.4",
2294
- "@esbuild/android-arm64": "0.27.4",
2295
- "@esbuild/android-x64": "0.27.4",
2296
- "@esbuild/darwin-arm64": "0.27.4",
2297
- "@esbuild/darwin-x64": "0.27.4",
2298
- "@esbuild/freebsd-arm64": "0.27.4",
2299
- "@esbuild/freebsd-x64": "0.27.4",
2300
- "@esbuild/linux-arm": "0.27.4",
2301
- "@esbuild/linux-arm64": "0.27.4",
2302
- "@esbuild/linux-ia32": "0.27.4",
2303
- "@esbuild/linux-loong64": "0.27.4",
2304
- "@esbuild/linux-mips64el": "0.27.4",
2305
- "@esbuild/linux-ppc64": "0.27.4",
2306
- "@esbuild/linux-riscv64": "0.27.4",
2307
- "@esbuild/linux-s390x": "0.27.4",
2308
- "@esbuild/linux-x64": "0.27.4",
2309
- "@esbuild/netbsd-arm64": "0.27.4",
2310
- "@esbuild/netbsd-x64": "0.27.4",
2311
- "@esbuild/openbsd-arm64": "0.27.4",
2312
- "@esbuild/openbsd-x64": "0.27.4",
2313
- "@esbuild/openharmony-arm64": "0.27.4",
2314
- "@esbuild/sunos-x64": "0.27.4",
2315
- "@esbuild/win32-arm64": "0.27.4",
2316
- "@esbuild/win32-ia32": "0.27.4",
2317
- "@esbuild/win32-x64": "0.27.4"
2318
- }
2319
- },
2320
1658
  "node_modules/escape-string-regexp": {
2321
1659
  "version": "4.0.0",
2322
1660
  "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
@@ -2331,33 +1669,30 @@
2331
1669
  }
2332
1670
  },
2333
1671
  "node_modules/eslint": {
2334
- "version": "9.39.4",
2335
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.4.tgz",
2336
- "integrity": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==",
1672
+ "version": "10.1.0",
1673
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-10.1.0.tgz",
1674
+ "integrity": "sha512-S9jlY/ELKEUwwQnqWDO+f+m6sercqOPSqXM5Go94l7DOmxHVDgmSFGWEzeE/gwgTAr0W103BWt0QLe/7mabIvA==",
2337
1675
  "dev": true,
2338
1676
  "license": "MIT",
2339
1677
  "dependencies": {
2340
1678
  "@eslint-community/eslint-utils": "^4.8.0",
2341
- "@eslint-community/regexpp": "^4.12.1",
2342
- "@eslint/config-array": "^0.21.2",
2343
- "@eslint/config-helpers": "^0.4.2",
2344
- "@eslint/core": "^0.17.0",
2345
- "@eslint/eslintrc": "^3.3.5",
2346
- "@eslint/js": "9.39.4",
2347
- "@eslint/plugin-kit": "^0.4.1",
1679
+ "@eslint-community/regexpp": "^4.12.2",
1680
+ "@eslint/config-array": "^0.23.3",
1681
+ "@eslint/config-helpers": "^0.5.3",
1682
+ "@eslint/core": "^1.1.1",
1683
+ "@eslint/plugin-kit": "^0.6.1",
2348
1684
  "@humanfs/node": "^0.16.6",
2349
1685
  "@humanwhocodes/module-importer": "^1.0.1",
2350
1686
  "@humanwhocodes/retry": "^0.4.2",
2351
1687
  "@types/estree": "^1.0.6",
2352
1688
  "ajv": "^6.14.0",
2353
- "chalk": "^4.0.0",
2354
1689
  "cross-spawn": "^7.0.6",
2355
1690
  "debug": "^4.3.2",
2356
1691
  "escape-string-regexp": "^4.0.0",
2357
- "eslint-scope": "^8.4.0",
2358
- "eslint-visitor-keys": "^4.2.1",
2359
- "espree": "^10.4.0",
2360
- "esquery": "^1.5.0",
1692
+ "eslint-scope": "^9.1.2",
1693
+ "eslint-visitor-keys": "^5.0.1",
1694
+ "espree": "^11.2.0",
1695
+ "esquery": "^1.7.0",
2361
1696
  "esutils": "^2.0.2",
2362
1697
  "fast-deep-equal": "^3.1.3",
2363
1698
  "file-entry-cache": "^8.0.0",
@@ -2367,8 +1702,7 @@
2367
1702
  "imurmurhash": "^0.1.4",
2368
1703
  "is-glob": "^4.0.0",
2369
1704
  "json-stable-stringify-without-jsonify": "^1.0.1",
2370
- "lodash.merge": "^4.6.2",
2371
- "minimatch": "^3.1.5",
1705
+ "minimatch": "^10.2.4",
2372
1706
  "natural-compare": "^1.4.0",
2373
1707
  "optionator": "^0.9.3"
2374
1708
  },
@@ -2376,7 +1710,7 @@
2376
1710
  "eslint": "bin/eslint.js"
2377
1711
  },
2378
1712
  "engines": {
2379
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1713
+ "node": "^20.19.0 || ^22.13.0 || >=24"
2380
1714
  },
2381
1715
  "funding": {
2382
1716
  "url": "https://eslint.org/donate"
@@ -2438,48 +1772,50 @@
2438
1772
  }
2439
1773
  },
2440
1774
  "node_modules/eslint-scope": {
2441
- "version": "8.4.0",
2442
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz",
2443
- "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==",
1775
+ "version": "9.1.2",
1776
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-9.1.2.tgz",
1777
+ "integrity": "sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==",
2444
1778
  "dev": true,
2445
1779
  "license": "BSD-2-Clause",
2446
1780
  "dependencies": {
1781
+ "@types/esrecurse": "^4.3.1",
1782
+ "@types/estree": "^1.0.8",
2447
1783
  "esrecurse": "^4.3.0",
2448
1784
  "estraverse": "^5.2.0"
2449
1785
  },
2450
1786
  "engines": {
2451
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1787
+ "node": "^20.19.0 || ^22.13.0 || >=24"
2452
1788
  },
2453
1789
  "funding": {
2454
1790
  "url": "https://opencollective.com/eslint"
2455
1791
  }
2456
1792
  },
2457
1793
  "node_modules/eslint-visitor-keys": {
2458
- "version": "4.2.1",
2459
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
2460
- "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
1794
+ "version": "5.0.1",
1795
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz",
1796
+ "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==",
2461
1797
  "dev": true,
2462
1798
  "license": "Apache-2.0",
2463
1799
  "engines": {
2464
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1800
+ "node": "^20.19.0 || ^22.13.0 || >=24"
2465
1801
  },
2466
1802
  "funding": {
2467
1803
  "url": "https://opencollective.com/eslint"
2468
1804
  }
2469
1805
  },
2470
1806
  "node_modules/espree": {
2471
- "version": "10.4.0",
2472
- "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz",
2473
- "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==",
1807
+ "version": "11.2.0",
1808
+ "resolved": "https://registry.npmjs.org/espree/-/espree-11.2.0.tgz",
1809
+ "integrity": "sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==",
2474
1810
  "dev": true,
2475
1811
  "license": "BSD-2-Clause",
2476
1812
  "dependencies": {
2477
- "acorn": "^8.15.0",
1813
+ "acorn": "^8.16.0",
2478
1814
  "acorn-jsx": "^5.3.2",
2479
- "eslint-visitor-keys": "^4.2.1"
1815
+ "eslint-visitor-keys": "^5.0.1"
2480
1816
  },
2481
1817
  "engines": {
2482
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1818
+ "node": "^20.19.0 || ^22.13.0 || >=24"
2483
1819
  },
2484
1820
  "funding": {
2485
1821
  "url": "https://opencollective.com/eslint"
@@ -2635,9 +1971,9 @@
2635
1971
  }
2636
1972
  },
2637
1973
  "node_modules/flatted": {
2638
- "version": "3.4.1",
2639
- "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.1.tgz",
2640
- "integrity": "sha512-IxfVbRFVlV8V/yRaGzk0UVIcsKKHMSfYw66T/u4nTwlWteQePsxe//LjudR1AMX4tZW3WFCh3Zqa/sjlqpbURQ==",
1974
+ "version": "3.4.2",
1975
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz",
1976
+ "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==",
2641
1977
  "dev": true,
2642
1978
  "license": "ISC"
2643
1979
  },
@@ -2669,19 +2005,6 @@
2669
2005
  "node": ">=10.13.0"
2670
2006
  }
2671
2007
  },
2672
- "node_modules/globals": {
2673
- "version": "14.0.0",
2674
- "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
2675
- "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
2676
- "dev": true,
2677
- "license": "MIT",
2678
- "engines": {
2679
- "node": ">=18"
2680
- },
2681
- "funding": {
2682
- "url": "https://github.com/sponsors/sindresorhus"
2683
- }
2684
- },
2685
2008
  "node_modules/gsap": {
2686
2009
  "version": "3.14.2",
2687
2010
  "resolved": "https://registry.npmjs.org/gsap/-/gsap-3.14.2.tgz",
@@ -2721,23 +2044,6 @@
2721
2044
  "dev": true,
2722
2045
  "license": "MIT"
2723
2046
  },
2724
- "node_modules/import-fresh": {
2725
- "version": "3.3.1",
2726
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
2727
- "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
2728
- "dev": true,
2729
- "license": "MIT",
2730
- "dependencies": {
2731
- "parent-module": "^1.0.0",
2732
- "resolve-from": "^4.0.0"
2733
- },
2734
- "engines": {
2735
- "node": ">=6"
2736
- },
2737
- "funding": {
2738
- "url": "https://github.com/sponsors/sindresorhus"
2739
- }
2740
- },
2741
2047
  "node_modules/imurmurhash": {
2742
2048
  "version": "0.1.4",
2743
2049
  "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
@@ -2776,20 +2082,7 @@
2776
2082
  "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
2777
2083
  "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
2778
2084
  "dev": true,
2779
- "license": "ISC"
2780
- },
2781
- "node_modules/js-yaml": {
2782
- "version": "4.1.1",
2783
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
2784
- "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
2785
- "dev": true,
2786
- "license": "MIT",
2787
- "dependencies": {
2788
- "argparse": "^2.0.1"
2789
- },
2790
- "bin": {
2791
- "js-yaml": "bin/js-yaml.js"
2792
- }
2085
+ "license": "ISC"
2793
2086
  },
2794
2087
  "node_modules/json-buffer": {
2795
2088
  "version": "3.0.1",
@@ -2836,6 +2129,279 @@
2836
2129
  "node": ">= 0.8.0"
2837
2130
  }
2838
2131
  },
2132
+ "node_modules/lightningcss": {
2133
+ "version": "1.32.0",
2134
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
2135
+ "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
2136
+ "dev": true,
2137
+ "license": "MPL-2.0",
2138
+ "dependencies": {
2139
+ "detect-libc": "^2.0.3"
2140
+ },
2141
+ "engines": {
2142
+ "node": ">= 12.0.0"
2143
+ },
2144
+ "funding": {
2145
+ "type": "opencollective",
2146
+ "url": "https://opencollective.com/parcel"
2147
+ },
2148
+ "optionalDependencies": {
2149
+ "lightningcss-android-arm64": "1.32.0",
2150
+ "lightningcss-darwin-arm64": "1.32.0",
2151
+ "lightningcss-darwin-x64": "1.32.0",
2152
+ "lightningcss-freebsd-x64": "1.32.0",
2153
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
2154
+ "lightningcss-linux-arm64-gnu": "1.32.0",
2155
+ "lightningcss-linux-arm64-musl": "1.32.0",
2156
+ "lightningcss-linux-x64-gnu": "1.32.0",
2157
+ "lightningcss-linux-x64-musl": "1.32.0",
2158
+ "lightningcss-win32-arm64-msvc": "1.32.0",
2159
+ "lightningcss-win32-x64-msvc": "1.32.0"
2160
+ }
2161
+ },
2162
+ "node_modules/lightningcss-android-arm64": {
2163
+ "version": "1.32.0",
2164
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
2165
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
2166
+ "cpu": [
2167
+ "arm64"
2168
+ ],
2169
+ "dev": true,
2170
+ "license": "MPL-2.0",
2171
+ "optional": true,
2172
+ "os": [
2173
+ "android"
2174
+ ],
2175
+ "engines": {
2176
+ "node": ">= 12.0.0"
2177
+ },
2178
+ "funding": {
2179
+ "type": "opencollective",
2180
+ "url": "https://opencollective.com/parcel"
2181
+ }
2182
+ },
2183
+ "node_modules/lightningcss-darwin-arm64": {
2184
+ "version": "1.32.0",
2185
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
2186
+ "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
2187
+ "cpu": [
2188
+ "arm64"
2189
+ ],
2190
+ "dev": true,
2191
+ "license": "MPL-2.0",
2192
+ "optional": true,
2193
+ "os": [
2194
+ "darwin"
2195
+ ],
2196
+ "engines": {
2197
+ "node": ">= 12.0.0"
2198
+ },
2199
+ "funding": {
2200
+ "type": "opencollective",
2201
+ "url": "https://opencollective.com/parcel"
2202
+ }
2203
+ },
2204
+ "node_modules/lightningcss-darwin-x64": {
2205
+ "version": "1.32.0",
2206
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
2207
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
2208
+ "cpu": [
2209
+ "x64"
2210
+ ],
2211
+ "dev": true,
2212
+ "license": "MPL-2.0",
2213
+ "optional": true,
2214
+ "os": [
2215
+ "darwin"
2216
+ ],
2217
+ "engines": {
2218
+ "node": ">= 12.0.0"
2219
+ },
2220
+ "funding": {
2221
+ "type": "opencollective",
2222
+ "url": "https://opencollective.com/parcel"
2223
+ }
2224
+ },
2225
+ "node_modules/lightningcss-freebsd-x64": {
2226
+ "version": "1.32.0",
2227
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
2228
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
2229
+ "cpu": [
2230
+ "x64"
2231
+ ],
2232
+ "dev": true,
2233
+ "license": "MPL-2.0",
2234
+ "optional": true,
2235
+ "os": [
2236
+ "freebsd"
2237
+ ],
2238
+ "engines": {
2239
+ "node": ">= 12.0.0"
2240
+ },
2241
+ "funding": {
2242
+ "type": "opencollective",
2243
+ "url": "https://opencollective.com/parcel"
2244
+ }
2245
+ },
2246
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
2247
+ "version": "1.32.0",
2248
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
2249
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
2250
+ "cpu": [
2251
+ "arm"
2252
+ ],
2253
+ "dev": true,
2254
+ "license": "MPL-2.0",
2255
+ "optional": true,
2256
+ "os": [
2257
+ "linux"
2258
+ ],
2259
+ "engines": {
2260
+ "node": ">= 12.0.0"
2261
+ },
2262
+ "funding": {
2263
+ "type": "opencollective",
2264
+ "url": "https://opencollective.com/parcel"
2265
+ }
2266
+ },
2267
+ "node_modules/lightningcss-linux-arm64-gnu": {
2268
+ "version": "1.32.0",
2269
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
2270
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
2271
+ "cpu": [
2272
+ "arm64"
2273
+ ],
2274
+ "dev": true,
2275
+ "libc": [
2276
+ "glibc"
2277
+ ],
2278
+ "license": "MPL-2.0",
2279
+ "optional": true,
2280
+ "os": [
2281
+ "linux"
2282
+ ],
2283
+ "engines": {
2284
+ "node": ">= 12.0.0"
2285
+ },
2286
+ "funding": {
2287
+ "type": "opencollective",
2288
+ "url": "https://opencollective.com/parcel"
2289
+ }
2290
+ },
2291
+ "node_modules/lightningcss-linux-arm64-musl": {
2292
+ "version": "1.32.0",
2293
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
2294
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
2295
+ "cpu": [
2296
+ "arm64"
2297
+ ],
2298
+ "dev": true,
2299
+ "libc": [
2300
+ "musl"
2301
+ ],
2302
+ "license": "MPL-2.0",
2303
+ "optional": true,
2304
+ "os": [
2305
+ "linux"
2306
+ ],
2307
+ "engines": {
2308
+ "node": ">= 12.0.0"
2309
+ },
2310
+ "funding": {
2311
+ "type": "opencollective",
2312
+ "url": "https://opencollective.com/parcel"
2313
+ }
2314
+ },
2315
+ "node_modules/lightningcss-linux-x64-gnu": {
2316
+ "version": "1.32.0",
2317
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
2318
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
2319
+ "cpu": [
2320
+ "x64"
2321
+ ],
2322
+ "dev": true,
2323
+ "libc": [
2324
+ "glibc"
2325
+ ],
2326
+ "license": "MPL-2.0",
2327
+ "optional": true,
2328
+ "os": [
2329
+ "linux"
2330
+ ],
2331
+ "engines": {
2332
+ "node": ">= 12.0.0"
2333
+ },
2334
+ "funding": {
2335
+ "type": "opencollective",
2336
+ "url": "https://opencollective.com/parcel"
2337
+ }
2338
+ },
2339
+ "node_modules/lightningcss-linux-x64-musl": {
2340
+ "version": "1.32.0",
2341
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
2342
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
2343
+ "cpu": [
2344
+ "x64"
2345
+ ],
2346
+ "dev": true,
2347
+ "libc": [
2348
+ "musl"
2349
+ ],
2350
+ "license": "MPL-2.0",
2351
+ "optional": true,
2352
+ "os": [
2353
+ "linux"
2354
+ ],
2355
+ "engines": {
2356
+ "node": ">= 12.0.0"
2357
+ },
2358
+ "funding": {
2359
+ "type": "opencollective",
2360
+ "url": "https://opencollective.com/parcel"
2361
+ }
2362
+ },
2363
+ "node_modules/lightningcss-win32-arm64-msvc": {
2364
+ "version": "1.32.0",
2365
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
2366
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
2367
+ "cpu": [
2368
+ "arm64"
2369
+ ],
2370
+ "dev": true,
2371
+ "license": "MPL-2.0",
2372
+ "optional": true,
2373
+ "os": [
2374
+ "win32"
2375
+ ],
2376
+ "engines": {
2377
+ "node": ">= 12.0.0"
2378
+ },
2379
+ "funding": {
2380
+ "type": "opencollective",
2381
+ "url": "https://opencollective.com/parcel"
2382
+ }
2383
+ },
2384
+ "node_modules/lightningcss-win32-x64-msvc": {
2385
+ "version": "1.32.0",
2386
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
2387
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
2388
+ "cpu": [
2389
+ "x64"
2390
+ ],
2391
+ "dev": true,
2392
+ "license": "MPL-2.0",
2393
+ "optional": true,
2394
+ "os": [
2395
+ "win32"
2396
+ ],
2397
+ "engines": {
2398
+ "node": ">= 12.0.0"
2399
+ },
2400
+ "funding": {
2401
+ "type": "opencollective",
2402
+ "url": "https://opencollective.com/parcel"
2403
+ }
2404
+ },
2839
2405
  "node_modules/lil-gui": {
2840
2406
  "version": "0.21.0",
2841
2407
  "resolved": "https://registry.npmjs.org/lil-gui/-/lil-gui-0.21.0.tgz",
@@ -2858,13 +2424,6 @@
2858
2424
  "url": "https://github.com/sponsors/sindresorhus"
2859
2425
  }
2860
2426
  },
2861
- "node_modules/lodash.merge": {
2862
- "version": "4.6.2",
2863
- "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
2864
- "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
2865
- "dev": true,
2866
- "license": "MIT"
2867
- },
2868
2427
  "node_modules/magic-string": {
2869
2428
  "version": "0.30.21",
2870
2429
  "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
@@ -2875,23 +2434,26 @@
2875
2434
  }
2876
2435
  },
2877
2436
  "node_modules/meshoptimizer": {
2878
- "version": "0.22.0",
2879
- "resolved": "https://registry.npmjs.org/meshoptimizer/-/meshoptimizer-0.22.0.tgz",
2880
- "integrity": "sha512-IebiK79sqIy+E4EgOr+CAw+Ke8hAspXKzBd0JdgEmPHiAwmvEj2S4h1rfvo+o/BnfEYd/jAOg5IeeIjzlzSnDg==",
2437
+ "version": "1.0.1",
2438
+ "resolved": "https://registry.npmjs.org/meshoptimizer/-/meshoptimizer-1.0.1.tgz",
2439
+ "integrity": "sha512-Vix+QlA1YYT3FwmBBZ+49cE5y/b+pRrcXKqGpS5ouh33d3lSp2PoTpCw19E0cKDFWalembrHnIaZetf27a+W2g==",
2881
2440
  "dev": true,
2882
2441
  "license": "MIT"
2883
2442
  },
2884
2443
  "node_modules/minimatch": {
2885
- "version": "3.1.5",
2886
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz",
2887
- "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
2444
+ "version": "10.2.4",
2445
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.4.tgz",
2446
+ "integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==",
2888
2447
  "dev": true,
2889
- "license": "ISC",
2448
+ "license": "BlueOak-1.0.0",
2890
2449
  "dependencies": {
2891
- "brace-expansion": "^1.1.7"
2450
+ "brace-expansion": "^5.0.2"
2892
2451
  },
2893
2452
  "engines": {
2894
- "node": "*"
2453
+ "node": "18 || 20 || >=22"
2454
+ },
2455
+ "funding": {
2456
+ "url": "https://github.com/sponsors/isaacs"
2895
2457
  }
2896
2458
  },
2897
2459
  "node_modules/ms": {
@@ -2991,19 +2553,6 @@
2991
2553
  "url": "https://github.com/sponsors/sindresorhus"
2992
2554
  }
2993
2555
  },
2994
- "node_modules/parent-module": {
2995
- "version": "1.0.1",
2996
- "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
2997
- "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
2998
- "dev": true,
2999
- "license": "MIT",
3000
- "dependencies": {
3001
- "callsites": "^3.0.0"
3002
- },
3003
- "engines": {
3004
- "node": ">=6"
3005
- }
3006
- },
3007
2556
  "node_modules/path-browserify": {
3008
2557
  "version": "1.0.1",
3009
2558
  "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz",
@@ -3152,60 +2701,46 @@
3152
2701
  "node": ">=0.10.0"
3153
2702
  }
3154
2703
  },
3155
- "node_modules/resolve-from": {
3156
- "version": "4.0.0",
3157
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
3158
- "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
3159
- "dev": true,
3160
- "license": "MIT",
3161
- "engines": {
3162
- "node": ">=4"
3163
- }
3164
- },
3165
- "node_modules/rollup": {
3166
- "version": "4.59.0",
3167
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.59.0.tgz",
3168
- "integrity": "sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==",
2704
+ "node_modules/rolldown": {
2705
+ "version": "1.0.0-rc.10",
2706
+ "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-rc.10.tgz",
2707
+ "integrity": "sha512-q7j6vvarRFmKpgJUT8HCAUljkgzEp4LAhPlJUvQhA5LA1SUL36s5QCysMutErzL3EbNOZOkoziSx9iZC4FddKA==",
3169
2708
  "dev": true,
3170
2709
  "license": "MIT",
3171
2710
  "dependencies": {
3172
- "@types/estree": "1.0.8"
2711
+ "@oxc-project/types": "=0.120.0",
2712
+ "@rolldown/pluginutils": "1.0.0-rc.10"
3173
2713
  },
3174
2714
  "bin": {
3175
- "rollup": "dist/bin/rollup"
2715
+ "rolldown": "bin/cli.mjs"
3176
2716
  },
3177
2717
  "engines": {
3178
- "node": ">=18.0.0",
3179
- "npm": ">=8.0.0"
2718
+ "node": "^20.19.0 || >=22.12.0"
3180
2719
  },
3181
2720
  "optionalDependencies": {
3182
- "@rollup/rollup-android-arm-eabi": "4.59.0",
3183
- "@rollup/rollup-android-arm64": "4.59.0",
3184
- "@rollup/rollup-darwin-arm64": "4.59.0",
3185
- "@rollup/rollup-darwin-x64": "4.59.0",
3186
- "@rollup/rollup-freebsd-arm64": "4.59.0",
3187
- "@rollup/rollup-freebsd-x64": "4.59.0",
3188
- "@rollup/rollup-linux-arm-gnueabihf": "4.59.0",
3189
- "@rollup/rollup-linux-arm-musleabihf": "4.59.0",
3190
- "@rollup/rollup-linux-arm64-gnu": "4.59.0",
3191
- "@rollup/rollup-linux-arm64-musl": "4.59.0",
3192
- "@rollup/rollup-linux-loong64-gnu": "4.59.0",
3193
- "@rollup/rollup-linux-loong64-musl": "4.59.0",
3194
- "@rollup/rollup-linux-ppc64-gnu": "4.59.0",
3195
- "@rollup/rollup-linux-ppc64-musl": "4.59.0",
3196
- "@rollup/rollup-linux-riscv64-gnu": "4.59.0",
3197
- "@rollup/rollup-linux-riscv64-musl": "4.59.0",
3198
- "@rollup/rollup-linux-s390x-gnu": "4.59.0",
3199
- "@rollup/rollup-linux-x64-gnu": "4.59.0",
3200
- "@rollup/rollup-linux-x64-musl": "4.59.0",
3201
- "@rollup/rollup-openbsd-x64": "4.59.0",
3202
- "@rollup/rollup-openharmony-arm64": "4.59.0",
3203
- "@rollup/rollup-win32-arm64-msvc": "4.59.0",
3204
- "@rollup/rollup-win32-ia32-msvc": "4.59.0",
3205
- "@rollup/rollup-win32-x64-gnu": "4.59.0",
3206
- "@rollup/rollup-win32-x64-msvc": "4.59.0",
3207
- "fsevents": "~2.3.2"
3208
- }
2721
+ "@rolldown/binding-android-arm64": "1.0.0-rc.10",
2722
+ "@rolldown/binding-darwin-arm64": "1.0.0-rc.10",
2723
+ "@rolldown/binding-darwin-x64": "1.0.0-rc.10",
2724
+ "@rolldown/binding-freebsd-x64": "1.0.0-rc.10",
2725
+ "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.10",
2726
+ "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.10",
2727
+ "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.10",
2728
+ "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.10",
2729
+ "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.10",
2730
+ "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.10",
2731
+ "@rolldown/binding-linux-x64-musl": "1.0.0-rc.10",
2732
+ "@rolldown/binding-openharmony-arm64": "1.0.0-rc.10",
2733
+ "@rolldown/binding-wasm32-wasi": "1.0.0-rc.10",
2734
+ "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.10",
2735
+ "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.10"
2736
+ }
2737
+ },
2738
+ "node_modules/rolldown/node_modules/@rolldown/pluginutils": {
2739
+ "version": "1.0.0-rc.10",
2740
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.10.tgz",
2741
+ "integrity": "sha512-UkVDEFk1w3mveXeKgaTuYfKWtPbvgck1dT8TUG3bnccrH0XtLTuAyfCoks4Q/M5ZGToSVJTIQYCzy2g/atAOeg==",
2742
+ "dev": true,
2743
+ "license": "MIT"
3209
2744
  },
3210
2745
  "node_modules/rxjs": {
3211
2746
  "version": "7.8.2",
@@ -3656,32 +3191,6 @@
3656
3191
  "node": ">=0.10.0"
3657
3192
  }
3658
3193
  },
3659
- "node_modules/strip-json-comments": {
3660
- "version": "3.1.1",
3661
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
3662
- "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
3663
- "dev": true,
3664
- "license": "MIT",
3665
- "engines": {
3666
- "node": ">=8"
3667
- },
3668
- "funding": {
3669
- "url": "https://github.com/sponsors/sindresorhus"
3670
- }
3671
- },
3672
- "node_modules/supports-color": {
3673
- "version": "7.2.0",
3674
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
3675
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
3676
- "dev": true,
3677
- "license": "MIT",
3678
- "dependencies": {
3679
- "has-flag": "^4.0.0"
3680
- },
3681
- "engines": {
3682
- "node": ">=8"
3683
- }
3684
- },
3685
3194
  "node_modules/sync-child-process": {
3686
3195
  "version": "1.0.2",
3687
3196
  "resolved": "https://registry.npmjs.org/sync-child-process/-/sync-child-process-1.0.2.tgz",
@@ -3722,9 +3231,9 @@
3722
3231
  }
3723
3232
  },
3724
3233
  "node_modules/three": {
3725
- "version": "0.182.0",
3726
- "resolved": "https://registry.npmjs.org/three/-/three-0.182.0.tgz",
3727
- "integrity": "sha512-GbHabT+Irv+ihI1/f5kIIsZ+Ef9Sl5A1Y7imvS5RQjWgtTPfPnZ43JmlYI7NtCRDK9zir20lQpfg8/9Yd02OvQ==",
3234
+ "version": "0.183.2",
3235
+ "resolved": "https://registry.npmjs.org/three/-/three-0.183.2.tgz",
3236
+ "integrity": "sha512-di3BsL2FEQ1PA7Hcvn4fyJOlxRRgFYBpMTcyOgkwJIaDOdJMebEFPA+t98EvjuljDx4hNulAGwF6KIjtwI5jgQ==",
3728
3237
  "license": "MIT"
3729
3238
  },
3730
3239
  "node_modules/three-perf": {
@@ -3889,17 +3398,16 @@
3889
3398
  "license": "MIT"
3890
3399
  },
3891
3400
  "node_modules/vite": {
3892
- "version": "7.3.1",
3893
- "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.1.tgz",
3894
- "integrity": "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==",
3401
+ "version": "8.0.1",
3402
+ "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.1.tgz",
3403
+ "integrity": "sha512-wt+Z2qIhfFt85uiyRt5LPU4oVEJBXj8hZNWKeqFG4gRG/0RaRGJ7njQCwzFVjO+v4+Ipmf5CY7VdmZRAYYBPHw==",
3895
3404
  "dev": true,
3896
3405
  "license": "MIT",
3897
3406
  "dependencies": {
3898
- "esbuild": "^0.27.0",
3899
- "fdir": "^6.5.0",
3407
+ "lightningcss": "^1.32.0",
3900
3408
  "picomatch": "^4.0.3",
3901
- "postcss": "^8.5.6",
3902
- "rollup": "^4.43.0",
3409
+ "postcss": "^8.5.8",
3410
+ "rolldown": "1.0.0-rc.10",
3903
3411
  "tinyglobby": "^0.2.15"
3904
3412
  },
3905
3413
  "bin": {
@@ -3916,9 +3424,10 @@
3916
3424
  },
3917
3425
  "peerDependencies": {
3918
3426
  "@types/node": "^20.19.0 || >=22.12.0",
3427
+ "@vitejs/devtools": "^0.1.0",
3428
+ "esbuild": "^0.27.0",
3919
3429
  "jiti": ">=1.21.0",
3920
3430
  "less": "^4.0.0",
3921
- "lightningcss": "^1.21.0",
3922
3431
  "sass": "^1.70.0",
3923
3432
  "sass-embedded": "^1.70.0",
3924
3433
  "stylus": ">=0.54.8",
@@ -3931,13 +3440,16 @@
3931
3440
  "@types/node": {
3932
3441
  "optional": true
3933
3442
  },
3934
- "jiti": {
3443
+ "@vitejs/devtools": {
3935
3444
  "optional": true
3936
3445
  },
3937
- "less": {
3446
+ "esbuild": {
3938
3447
  "optional": true
3939
3448
  },
3940
- "lightningcss": {
3449
+ "jiti": {
3450
+ "optional": true
3451
+ },
3452
+ "less": {
3941
3453
  "optional": true
3942
3454
  },
3943
3455
  "sass": {
@@ -4016,14 +3528,14 @@
4016
3528
  }
4017
3529
  },
4018
3530
  "node_modules/vue-tsc": {
4019
- "version": "3.2.5",
4020
- "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-3.2.5.tgz",
4021
- "integrity": "sha512-/htfTCMluQ+P2FISGAooul8kO4JMheOTCbCy4M6dYnYYjqLe3BExZudAua6MSIKSFYQtFOYAll7XobYwcpokGA==",
3531
+ "version": "3.2.6",
3532
+ "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-3.2.6.tgz",
3533
+ "integrity": "sha512-gYW/kWI0XrwGzd0PKc7tVB/qpdeAkIZLNZb10/InizkQjHjnT8weZ/vBarZoj4kHKbUTZT/bAVgoOr8x4NsQ/Q==",
4022
3534
  "dev": true,
4023
3535
  "license": "MIT",
4024
3536
  "dependencies": {
4025
3537
  "@volar/typescript": "2.4.28",
4026
- "@vue/language-core": "3.2.5"
3538
+ "@vue/language-core": "3.2.6"
4027
3539
  },
4028
3540
  "bin": {
4029
3541
  "vue-tsc": "bin/vue-tsc.js"