@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,4455 +0,0 @@
1
- {
2
- "name": "template-react",
3
- "version": "1.5.2",
4
- "lockfileVersion": 3,
5
- "requires": true,
6
- "packages": {
7
- "": {
8
- "name": "template-react",
9
- "version": "1.5.2",
10
- "dependencies": {
11
- "@dimforge/rapier3d": "^0.19.3",
12
- "gsap": "^3.14.2",
13
- "howler": "^2.2.4",
14
- "lil-gui": "^0.21.0",
15
- "react": "^19.2.3",
16
- "react-dom": "^19.2.3",
17
- "three": "^0.182.0"
18
- },
19
- "devDependencies": {
20
- "@eslint/js": "^9.39.2",
21
- "@types/howler": "^2.2.12",
22
- "@types/node": "^25.0.3",
23
- "@types/react": "^19.2.7",
24
- "@types/react-dom": "^19.2.3",
25
- "@types/three": "^0.182.0",
26
- "@vitejs/plugin-react": "^5.1.2",
27
- "eslint": "^9.39.2",
28
- "eslint-config-prettier": "^10.1.8",
29
- "eslint-plugin-prettier": "^5.5.4",
30
- "eslint-plugin-react-hooks": "^7.0.1",
31
- "eslint-plugin-react-refresh": "^0.4.26",
32
- "globals": "^16.5.0",
33
- "prettier": "^3.7.4",
34
- "sass-embedded": "^1.97.1",
35
- "three-perf": "^1.0.11",
36
- "typescript": "~5.9.3",
37
- "typescript-eslint": "^8.50.1",
38
- "vite": "^7.3.0",
39
- "vite-plugin-glsl": "^1.5.5"
40
- }
41
- },
42
- "node_modules/@babel/code-frame": {
43
- "version": "7.27.1",
44
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
45
- "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
46
- "dev": true,
47
- "license": "MIT",
48
- "dependencies": {
49
- "@babel/helper-validator-identifier": "^7.27.1",
50
- "js-tokens": "^4.0.0",
51
- "picocolors": "^1.1.1"
52
- },
53
- "engines": {
54
- "node": ">=6.9.0"
55
- }
56
- },
57
- "node_modules/@babel/compat-data": {
58
- "version": "7.28.5",
59
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz",
60
- "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==",
61
- "dev": true,
62
- "license": "MIT",
63
- "engines": {
64
- "node": ">=6.9.0"
65
- }
66
- },
67
- "node_modules/@babel/core": {
68
- "version": "7.28.5",
69
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz",
70
- "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==",
71
- "dev": true,
72
- "license": "MIT",
73
- "dependencies": {
74
- "@babel/code-frame": "^7.27.1",
75
- "@babel/generator": "^7.28.5",
76
- "@babel/helper-compilation-targets": "^7.27.2",
77
- "@babel/helper-module-transforms": "^7.28.3",
78
- "@babel/helpers": "^7.28.4",
79
- "@babel/parser": "^7.28.5",
80
- "@babel/template": "^7.27.2",
81
- "@babel/traverse": "^7.28.5",
82
- "@babel/types": "^7.28.5",
83
- "@jridgewell/remapping": "^2.3.5",
84
- "convert-source-map": "^2.0.0",
85
- "debug": "^4.1.0",
86
- "gensync": "^1.0.0-beta.2",
87
- "json5": "^2.2.3",
88
- "semver": "^6.3.1"
89
- },
90
- "engines": {
91
- "node": ">=6.9.0"
92
- },
93
- "funding": {
94
- "type": "opencollective",
95
- "url": "https://opencollective.com/babel"
96
- }
97
- },
98
- "node_modules/@babel/generator": {
99
- "version": "7.28.5",
100
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz",
101
- "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==",
102
- "dev": true,
103
- "license": "MIT",
104
- "dependencies": {
105
- "@babel/parser": "^7.28.5",
106
- "@babel/types": "^7.28.5",
107
- "@jridgewell/gen-mapping": "^0.3.12",
108
- "@jridgewell/trace-mapping": "^0.3.28",
109
- "jsesc": "^3.0.2"
110
- },
111
- "engines": {
112
- "node": ">=6.9.0"
113
- }
114
- },
115
- "node_modules/@babel/helper-compilation-targets": {
116
- "version": "7.27.2",
117
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz",
118
- "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==",
119
- "dev": true,
120
- "license": "MIT",
121
- "dependencies": {
122
- "@babel/compat-data": "^7.27.2",
123
- "@babel/helper-validator-option": "^7.27.1",
124
- "browserslist": "^4.24.0",
125
- "lru-cache": "^5.1.1",
126
- "semver": "^6.3.1"
127
- },
128
- "engines": {
129
- "node": ">=6.9.0"
130
- }
131
- },
132
- "node_modules/@babel/helper-globals": {
133
- "version": "7.28.0",
134
- "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
135
- "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
136
- "dev": true,
137
- "license": "MIT",
138
- "engines": {
139
- "node": ">=6.9.0"
140
- }
141
- },
142
- "node_modules/@babel/helper-module-imports": {
143
- "version": "7.27.1",
144
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
145
- "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
146
- "dev": true,
147
- "license": "MIT",
148
- "dependencies": {
149
- "@babel/traverse": "^7.27.1",
150
- "@babel/types": "^7.27.1"
151
- },
152
- "engines": {
153
- "node": ">=6.9.0"
154
- }
155
- },
156
- "node_modules/@babel/helper-module-transforms": {
157
- "version": "7.28.3",
158
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz",
159
- "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==",
160
- "dev": true,
161
- "license": "MIT",
162
- "dependencies": {
163
- "@babel/helper-module-imports": "^7.27.1",
164
- "@babel/helper-validator-identifier": "^7.27.1",
165
- "@babel/traverse": "^7.28.3"
166
- },
167
- "engines": {
168
- "node": ">=6.9.0"
169
- },
170
- "peerDependencies": {
171
- "@babel/core": "^7.0.0"
172
- }
173
- },
174
- "node_modules/@babel/helper-plugin-utils": {
175
- "version": "7.27.1",
176
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
177
- "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
178
- "dev": true,
179
- "license": "MIT",
180
- "engines": {
181
- "node": ">=6.9.0"
182
- }
183
- },
184
- "node_modules/@babel/helper-string-parser": {
185
- "version": "7.27.1",
186
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
187
- "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
188
- "dev": true,
189
- "license": "MIT",
190
- "engines": {
191
- "node": ">=6.9.0"
192
- }
193
- },
194
- "node_modules/@babel/helper-validator-identifier": {
195
- "version": "7.28.5",
196
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
197
- "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
198
- "dev": true,
199
- "license": "MIT",
200
- "engines": {
201
- "node": ">=6.9.0"
202
- }
203
- },
204
- "node_modules/@babel/helper-validator-option": {
205
- "version": "7.27.1",
206
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
207
- "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
208
- "dev": true,
209
- "license": "MIT",
210
- "engines": {
211
- "node": ">=6.9.0"
212
- }
213
- },
214
- "node_modules/@babel/helpers": {
215
- "version": "7.28.4",
216
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz",
217
- "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==",
218
- "dev": true,
219
- "license": "MIT",
220
- "dependencies": {
221
- "@babel/template": "^7.27.2",
222
- "@babel/types": "^7.28.4"
223
- },
224
- "engines": {
225
- "node": ">=6.9.0"
226
- }
227
- },
228
- "node_modules/@babel/parser": {
229
- "version": "7.28.5",
230
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz",
231
- "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==",
232
- "dev": true,
233
- "license": "MIT",
234
- "dependencies": {
235
- "@babel/types": "^7.28.5"
236
- },
237
- "bin": {
238
- "parser": "bin/babel-parser.js"
239
- },
240
- "engines": {
241
- "node": ">=6.0.0"
242
- }
243
- },
244
- "node_modules/@babel/plugin-transform-react-jsx-self": {
245
- "version": "7.27.1",
246
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
247
- "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
248
- "dev": true,
249
- "license": "MIT",
250
- "dependencies": {
251
- "@babel/helper-plugin-utils": "^7.27.1"
252
- },
253
- "engines": {
254
- "node": ">=6.9.0"
255
- },
256
- "peerDependencies": {
257
- "@babel/core": "^7.0.0-0"
258
- }
259
- },
260
- "node_modules/@babel/plugin-transform-react-jsx-source": {
261
- "version": "7.27.1",
262
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
263
- "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
264
- "dev": true,
265
- "license": "MIT",
266
- "dependencies": {
267
- "@babel/helper-plugin-utils": "^7.27.1"
268
- },
269
- "engines": {
270
- "node": ">=6.9.0"
271
- },
272
- "peerDependencies": {
273
- "@babel/core": "^7.0.0-0"
274
- }
275
- },
276
- "node_modules/@babel/template": {
277
- "version": "7.27.2",
278
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
279
- "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
280
- "dev": true,
281
- "license": "MIT",
282
- "dependencies": {
283
- "@babel/code-frame": "^7.27.1",
284
- "@babel/parser": "^7.27.2",
285
- "@babel/types": "^7.27.1"
286
- },
287
- "engines": {
288
- "node": ">=6.9.0"
289
- }
290
- },
291
- "node_modules/@babel/traverse": {
292
- "version": "7.28.5",
293
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz",
294
- "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==",
295
- "dev": true,
296
- "license": "MIT",
297
- "dependencies": {
298
- "@babel/code-frame": "^7.27.1",
299
- "@babel/generator": "^7.28.5",
300
- "@babel/helper-globals": "^7.28.0",
301
- "@babel/parser": "^7.28.5",
302
- "@babel/template": "^7.27.2",
303
- "@babel/types": "^7.28.5",
304
- "debug": "^4.3.1"
305
- },
306
- "engines": {
307
- "node": ">=6.9.0"
308
- }
309
- },
310
- "node_modules/@babel/types": {
311
- "version": "7.28.5",
312
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz",
313
- "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==",
314
- "dev": true,
315
- "license": "MIT",
316
- "dependencies": {
317
- "@babel/helper-string-parser": "^7.27.1",
318
- "@babel/helper-validator-identifier": "^7.28.5"
319
- },
320
- "engines": {
321
- "node": ">=6.9.0"
322
- }
323
- },
324
- "node_modules/@bufbuild/protobuf": {
325
- "version": "2.10.1",
326
- "resolved": "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-2.10.1.tgz",
327
- "integrity": "sha512-ckS3+vyJb5qGpEYv/s1OebUHDi/xSNtfgw1wqKZo7MR9F2z+qXr0q5XagafAG/9O0QPVIUfST0smluYSTpYFkg==",
328
- "dev": true,
329
- "license": "(Apache-2.0 AND BSD-3-Clause)"
330
- },
331
- "node_modules/@dimforge/rapier3d": {
332
- "version": "0.19.3",
333
- "resolved": "https://registry.npmjs.org/@dimforge/rapier3d/-/rapier3d-0.19.3.tgz",
334
- "integrity": "sha512-tkD1tvHTDML0W9s9rUYAsx0btO9LbVTnMBKJWVgOsas5haGFbYY+pzr5hbwYysv/IJmgmMrIFoVWIcsaCUE9ow==",
335
- "license": "Apache-2.0"
336
- },
337
- "node_modules/@dimforge/rapier3d-compat": {
338
- "version": "0.12.0",
339
- "resolved": "https://registry.npmjs.org/@dimforge/rapier3d-compat/-/rapier3d-compat-0.12.0.tgz",
340
- "integrity": "sha512-uekIGetywIgopfD97oDL5PfeezkFpNhwlzlaEYNOA0N6ghdsOvh/HYjSMek5Q2O1PYvRSDFcqFVJl4r4ZBwOow==",
341
- "dev": true,
342
- "license": "Apache-2.0"
343
- },
344
- "node_modules/@esbuild/aix-ppc64": {
345
- "version": "0.27.2",
346
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.2.tgz",
347
- "integrity": "sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==",
348
- "cpu": [
349
- "ppc64"
350
- ],
351
- "dev": true,
352
- "license": "MIT",
353
- "optional": true,
354
- "os": [
355
- "aix"
356
- ],
357
- "engines": {
358
- "node": ">=18"
359
- }
360
- },
361
- "node_modules/@esbuild/android-arm": {
362
- "version": "0.27.2",
363
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.2.tgz",
364
- "integrity": "sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==",
365
- "cpu": [
366
- "arm"
367
- ],
368
- "dev": true,
369
- "license": "MIT",
370
- "optional": true,
371
- "os": [
372
- "android"
373
- ],
374
- "engines": {
375
- "node": ">=18"
376
- }
377
- },
378
- "node_modules/@esbuild/android-arm64": {
379
- "version": "0.27.2",
380
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.2.tgz",
381
- "integrity": "sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==",
382
- "cpu": [
383
- "arm64"
384
- ],
385
- "dev": true,
386
- "license": "MIT",
387
- "optional": true,
388
- "os": [
389
- "android"
390
- ],
391
- "engines": {
392
- "node": ">=18"
393
- }
394
- },
395
- "node_modules/@esbuild/android-x64": {
396
- "version": "0.27.2",
397
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.2.tgz",
398
- "integrity": "sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==",
399
- "cpu": [
400
- "x64"
401
- ],
402
- "dev": true,
403
- "license": "MIT",
404
- "optional": true,
405
- "os": [
406
- "android"
407
- ],
408
- "engines": {
409
- "node": ">=18"
410
- }
411
- },
412
- "node_modules/@esbuild/darwin-arm64": {
413
- "version": "0.27.2",
414
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.2.tgz",
415
- "integrity": "sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==",
416
- "cpu": [
417
- "arm64"
418
- ],
419
- "dev": true,
420
- "license": "MIT",
421
- "optional": true,
422
- "os": [
423
- "darwin"
424
- ],
425
- "engines": {
426
- "node": ">=18"
427
- }
428
- },
429
- "node_modules/@esbuild/darwin-x64": {
430
- "version": "0.27.2",
431
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.2.tgz",
432
- "integrity": "sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==",
433
- "cpu": [
434
- "x64"
435
- ],
436
- "dev": true,
437
- "license": "MIT",
438
- "optional": true,
439
- "os": [
440
- "darwin"
441
- ],
442
- "engines": {
443
- "node": ">=18"
444
- }
445
- },
446
- "node_modules/@esbuild/freebsd-arm64": {
447
- "version": "0.27.2",
448
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.2.tgz",
449
- "integrity": "sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==",
450
- "cpu": [
451
- "arm64"
452
- ],
453
- "dev": true,
454
- "license": "MIT",
455
- "optional": true,
456
- "os": [
457
- "freebsd"
458
- ],
459
- "engines": {
460
- "node": ">=18"
461
- }
462
- },
463
- "node_modules/@esbuild/freebsd-x64": {
464
- "version": "0.27.2",
465
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.2.tgz",
466
- "integrity": "sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==",
467
- "cpu": [
468
- "x64"
469
- ],
470
- "dev": true,
471
- "license": "MIT",
472
- "optional": true,
473
- "os": [
474
- "freebsd"
475
- ],
476
- "engines": {
477
- "node": ">=18"
478
- }
479
- },
480
- "node_modules/@esbuild/linux-arm": {
481
- "version": "0.27.2",
482
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.2.tgz",
483
- "integrity": "sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==",
484
- "cpu": [
485
- "arm"
486
- ],
487
- "dev": true,
488
- "license": "MIT",
489
- "optional": true,
490
- "os": [
491
- "linux"
492
- ],
493
- "engines": {
494
- "node": ">=18"
495
- }
496
- },
497
- "node_modules/@esbuild/linux-arm64": {
498
- "version": "0.27.2",
499
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.2.tgz",
500
- "integrity": "sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==",
501
- "cpu": [
502
- "arm64"
503
- ],
504
- "dev": true,
505
- "license": "MIT",
506
- "optional": true,
507
- "os": [
508
- "linux"
509
- ],
510
- "engines": {
511
- "node": ">=18"
512
- }
513
- },
514
- "node_modules/@esbuild/linux-ia32": {
515
- "version": "0.27.2",
516
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.2.tgz",
517
- "integrity": "sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==",
518
- "cpu": [
519
- "ia32"
520
- ],
521
- "dev": true,
522
- "license": "MIT",
523
- "optional": true,
524
- "os": [
525
- "linux"
526
- ],
527
- "engines": {
528
- "node": ">=18"
529
- }
530
- },
531
- "node_modules/@esbuild/linux-loong64": {
532
- "version": "0.27.2",
533
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.2.tgz",
534
- "integrity": "sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==",
535
- "cpu": [
536
- "loong64"
537
- ],
538
- "dev": true,
539
- "license": "MIT",
540
- "optional": true,
541
- "os": [
542
- "linux"
543
- ],
544
- "engines": {
545
- "node": ">=18"
546
- }
547
- },
548
- "node_modules/@esbuild/linux-mips64el": {
549
- "version": "0.27.2",
550
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.2.tgz",
551
- "integrity": "sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==",
552
- "cpu": [
553
- "mips64el"
554
- ],
555
- "dev": true,
556
- "license": "MIT",
557
- "optional": true,
558
- "os": [
559
- "linux"
560
- ],
561
- "engines": {
562
- "node": ">=18"
563
- }
564
- },
565
- "node_modules/@esbuild/linux-ppc64": {
566
- "version": "0.27.2",
567
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.2.tgz",
568
- "integrity": "sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==",
569
- "cpu": [
570
- "ppc64"
571
- ],
572
- "dev": true,
573
- "license": "MIT",
574
- "optional": true,
575
- "os": [
576
- "linux"
577
- ],
578
- "engines": {
579
- "node": ">=18"
580
- }
581
- },
582
- "node_modules/@esbuild/linux-riscv64": {
583
- "version": "0.27.2",
584
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.2.tgz",
585
- "integrity": "sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==",
586
- "cpu": [
587
- "riscv64"
588
- ],
589
- "dev": true,
590
- "license": "MIT",
591
- "optional": true,
592
- "os": [
593
- "linux"
594
- ],
595
- "engines": {
596
- "node": ">=18"
597
- }
598
- },
599
- "node_modules/@esbuild/linux-s390x": {
600
- "version": "0.27.2",
601
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.2.tgz",
602
- "integrity": "sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==",
603
- "cpu": [
604
- "s390x"
605
- ],
606
- "dev": true,
607
- "license": "MIT",
608
- "optional": true,
609
- "os": [
610
- "linux"
611
- ],
612
- "engines": {
613
- "node": ">=18"
614
- }
615
- },
616
- "node_modules/@esbuild/linux-x64": {
617
- "version": "0.27.2",
618
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.2.tgz",
619
- "integrity": "sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==",
620
- "cpu": [
621
- "x64"
622
- ],
623
- "dev": true,
624
- "license": "MIT",
625
- "optional": true,
626
- "os": [
627
- "linux"
628
- ],
629
- "engines": {
630
- "node": ">=18"
631
- }
632
- },
633
- "node_modules/@esbuild/netbsd-arm64": {
634
- "version": "0.27.2",
635
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.2.tgz",
636
- "integrity": "sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==",
637
- "cpu": [
638
- "arm64"
639
- ],
640
- "dev": true,
641
- "license": "MIT",
642
- "optional": true,
643
- "os": [
644
- "netbsd"
645
- ],
646
- "engines": {
647
- "node": ">=18"
648
- }
649
- },
650
- "node_modules/@esbuild/netbsd-x64": {
651
- "version": "0.27.2",
652
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.2.tgz",
653
- "integrity": "sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==",
654
- "cpu": [
655
- "x64"
656
- ],
657
- "dev": true,
658
- "license": "MIT",
659
- "optional": true,
660
- "os": [
661
- "netbsd"
662
- ],
663
- "engines": {
664
- "node": ">=18"
665
- }
666
- },
667
- "node_modules/@esbuild/openbsd-arm64": {
668
- "version": "0.27.2",
669
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.2.tgz",
670
- "integrity": "sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==",
671
- "cpu": [
672
- "arm64"
673
- ],
674
- "dev": true,
675
- "license": "MIT",
676
- "optional": true,
677
- "os": [
678
- "openbsd"
679
- ],
680
- "engines": {
681
- "node": ">=18"
682
- }
683
- },
684
- "node_modules/@esbuild/openbsd-x64": {
685
- "version": "0.27.2",
686
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.2.tgz",
687
- "integrity": "sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==",
688
- "cpu": [
689
- "x64"
690
- ],
691
- "dev": true,
692
- "license": "MIT",
693
- "optional": true,
694
- "os": [
695
- "openbsd"
696
- ],
697
- "engines": {
698
- "node": ">=18"
699
- }
700
- },
701
- "node_modules/@esbuild/openharmony-arm64": {
702
- "version": "0.27.2",
703
- "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.2.tgz",
704
- "integrity": "sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==",
705
- "cpu": [
706
- "arm64"
707
- ],
708
- "dev": true,
709
- "license": "MIT",
710
- "optional": true,
711
- "os": [
712
- "openharmony"
713
- ],
714
- "engines": {
715
- "node": ">=18"
716
- }
717
- },
718
- "node_modules/@esbuild/sunos-x64": {
719
- "version": "0.27.2",
720
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.2.tgz",
721
- "integrity": "sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==",
722
- "cpu": [
723
- "x64"
724
- ],
725
- "dev": true,
726
- "license": "MIT",
727
- "optional": true,
728
- "os": [
729
- "sunos"
730
- ],
731
- "engines": {
732
- "node": ">=18"
733
- }
734
- },
735
- "node_modules/@esbuild/win32-arm64": {
736
- "version": "0.27.2",
737
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.2.tgz",
738
- "integrity": "sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==",
739
- "cpu": [
740
- "arm64"
741
- ],
742
- "dev": true,
743
- "license": "MIT",
744
- "optional": true,
745
- "os": [
746
- "win32"
747
- ],
748
- "engines": {
749
- "node": ">=18"
750
- }
751
- },
752
- "node_modules/@esbuild/win32-ia32": {
753
- "version": "0.27.2",
754
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.2.tgz",
755
- "integrity": "sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==",
756
- "cpu": [
757
- "ia32"
758
- ],
759
- "dev": true,
760
- "license": "MIT",
761
- "optional": true,
762
- "os": [
763
- "win32"
764
- ],
765
- "engines": {
766
- "node": ">=18"
767
- }
768
- },
769
- "node_modules/@esbuild/win32-x64": {
770
- "version": "0.27.2",
771
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.2.tgz",
772
- "integrity": "sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==",
773
- "cpu": [
774
- "x64"
775
- ],
776
- "dev": true,
777
- "license": "MIT",
778
- "optional": true,
779
- "os": [
780
- "win32"
781
- ],
782
- "engines": {
783
- "node": ">=18"
784
- }
785
- },
786
- "node_modules/@eslint-community/eslint-utils": {
787
- "version": "4.9.0",
788
- "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz",
789
- "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==",
790
- "dev": true,
791
- "license": "MIT",
792
- "dependencies": {
793
- "eslint-visitor-keys": "^3.4.3"
794
- },
795
- "engines": {
796
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
797
- },
798
- "funding": {
799
- "url": "https://opencollective.com/eslint"
800
- },
801
- "peerDependencies": {
802
- "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
803
- }
804
- },
805
- "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
806
- "version": "3.4.3",
807
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
808
- "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
809
- "dev": true,
810
- "license": "Apache-2.0",
811
- "engines": {
812
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
813
- },
814
- "funding": {
815
- "url": "https://opencollective.com/eslint"
816
- }
817
- },
818
- "node_modules/@eslint-community/regexpp": {
819
- "version": "4.12.2",
820
- "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
821
- "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
822
- "dev": true,
823
- "license": "MIT",
824
- "engines": {
825
- "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
826
- }
827
- },
828
- "node_modules/@eslint/config-array": {
829
- "version": "0.21.1",
830
- "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz",
831
- "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==",
832
- "dev": true,
833
- "license": "Apache-2.0",
834
- "dependencies": {
835
- "@eslint/object-schema": "^2.1.7",
836
- "debug": "^4.3.1",
837
- "minimatch": "^3.1.2"
838
- },
839
- "engines": {
840
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
841
- }
842
- },
843
- "node_modules/@eslint/config-helpers": {
844
- "version": "0.4.2",
845
- "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz",
846
- "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==",
847
- "dev": true,
848
- "license": "Apache-2.0",
849
- "dependencies": {
850
- "@eslint/core": "^0.17.0"
851
- },
852
- "engines": {
853
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
854
- }
855
- },
856
- "node_modules/@eslint/core": {
857
- "version": "0.17.0",
858
- "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz",
859
- "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==",
860
- "dev": true,
861
- "license": "Apache-2.0",
862
- "dependencies": {
863
- "@types/json-schema": "^7.0.15"
864
- },
865
- "engines": {
866
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
867
- }
868
- },
869
- "node_modules/@eslint/eslintrc": {
870
- "version": "3.3.3",
871
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.3.tgz",
872
- "integrity": "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==",
873
- "dev": true,
874
- "license": "MIT",
875
- "dependencies": {
876
- "ajv": "^6.12.4",
877
- "debug": "^4.3.2",
878
- "espree": "^10.0.1",
879
- "globals": "^14.0.0",
880
- "ignore": "^5.2.0",
881
- "import-fresh": "^3.2.1",
882
- "js-yaml": "^4.1.1",
883
- "minimatch": "^3.1.2",
884
- "strip-json-comments": "^3.1.1"
885
- },
886
- "engines": {
887
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
888
- },
889
- "funding": {
890
- "url": "https://opencollective.com/eslint"
891
- }
892
- },
893
- "node_modules/@eslint/eslintrc/node_modules/globals": {
894
- "version": "14.0.0",
895
- "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
896
- "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
897
- "dev": true,
898
- "license": "MIT",
899
- "engines": {
900
- "node": ">=18"
901
- },
902
- "funding": {
903
- "url": "https://github.com/sponsors/sindresorhus"
904
- }
905
- },
906
- "node_modules/@eslint/js": {
907
- "version": "9.39.2",
908
- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.2.tgz",
909
- "integrity": "sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==",
910
- "dev": true,
911
- "license": "MIT",
912
- "engines": {
913
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
914
- },
915
- "funding": {
916
- "url": "https://eslint.org/donate"
917
- }
918
- },
919
- "node_modules/@eslint/object-schema": {
920
- "version": "2.1.7",
921
- "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz",
922
- "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==",
923
- "dev": true,
924
- "license": "Apache-2.0",
925
- "engines": {
926
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
927
- }
928
- },
929
- "node_modules/@eslint/plugin-kit": {
930
- "version": "0.4.1",
931
- "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz",
932
- "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==",
933
- "dev": true,
934
- "license": "Apache-2.0",
935
- "dependencies": {
936
- "@eslint/core": "^0.17.0",
937
- "levn": "^0.4.1"
938
- },
939
- "engines": {
940
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
941
- }
942
- },
943
- "node_modules/@humanfs/core": {
944
- "version": "0.19.1",
945
- "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
946
- "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
947
- "dev": true,
948
- "license": "Apache-2.0",
949
- "engines": {
950
- "node": ">=18.18.0"
951
- }
952
- },
953
- "node_modules/@humanfs/node": {
954
- "version": "0.16.7",
955
- "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz",
956
- "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==",
957
- "dev": true,
958
- "license": "Apache-2.0",
959
- "dependencies": {
960
- "@humanfs/core": "^0.19.1",
961
- "@humanwhocodes/retry": "^0.4.0"
962
- },
963
- "engines": {
964
- "node": ">=18.18.0"
965
- }
966
- },
967
- "node_modules/@humanwhocodes/module-importer": {
968
- "version": "1.0.1",
969
- "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
970
- "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
971
- "dev": true,
972
- "license": "Apache-2.0",
973
- "engines": {
974
- "node": ">=12.22"
975
- },
976
- "funding": {
977
- "type": "github",
978
- "url": "https://github.com/sponsors/nzakas"
979
- }
980
- },
981
- "node_modules/@humanwhocodes/retry": {
982
- "version": "0.4.3",
983
- "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
984
- "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
985
- "dev": true,
986
- "license": "Apache-2.0",
987
- "engines": {
988
- "node": ">=18.18"
989
- },
990
- "funding": {
991
- "type": "github",
992
- "url": "https://github.com/sponsors/nzakas"
993
- }
994
- },
995
- "node_modules/@jridgewell/gen-mapping": {
996
- "version": "0.3.13",
997
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
998
- "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
999
- "dev": true,
1000
- "license": "MIT",
1001
- "dependencies": {
1002
- "@jridgewell/sourcemap-codec": "^1.5.0",
1003
- "@jridgewell/trace-mapping": "^0.3.24"
1004
- }
1005
- },
1006
- "node_modules/@jridgewell/remapping": {
1007
- "version": "2.3.5",
1008
- "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
1009
- "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
1010
- "dev": true,
1011
- "license": "MIT",
1012
- "dependencies": {
1013
- "@jridgewell/gen-mapping": "^0.3.5",
1014
- "@jridgewell/trace-mapping": "^0.3.24"
1015
- }
1016
- },
1017
- "node_modules/@jridgewell/resolve-uri": {
1018
- "version": "3.1.2",
1019
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
1020
- "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
1021
- "dev": true,
1022
- "license": "MIT",
1023
- "engines": {
1024
- "node": ">=6.0.0"
1025
- }
1026
- },
1027
- "node_modules/@jridgewell/sourcemap-codec": {
1028
- "version": "1.5.5",
1029
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
1030
- "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
1031
- "dev": true,
1032
- "license": "MIT"
1033
- },
1034
- "node_modules/@jridgewell/trace-mapping": {
1035
- "version": "0.3.31",
1036
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
1037
- "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
1038
- "dev": true,
1039
- "license": "MIT",
1040
- "dependencies": {
1041
- "@jridgewell/resolve-uri": "^3.1.0",
1042
- "@jridgewell/sourcemap-codec": "^1.4.14"
1043
- }
1044
- },
1045
- "node_modules/@parcel/watcher": {
1046
- "version": "2.5.1",
1047
- "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz",
1048
- "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==",
1049
- "dev": true,
1050
- "hasInstallScript": true,
1051
- "license": "MIT",
1052
- "optional": true,
1053
- "dependencies": {
1054
- "detect-libc": "^1.0.3",
1055
- "is-glob": "^4.0.3",
1056
- "micromatch": "^4.0.5",
1057
- "node-addon-api": "^7.0.0"
1058
- },
1059
- "engines": {
1060
- "node": ">= 10.0.0"
1061
- },
1062
- "funding": {
1063
- "type": "opencollective",
1064
- "url": "https://opencollective.com/parcel"
1065
- },
1066
- "optionalDependencies": {
1067
- "@parcel/watcher-android-arm64": "2.5.1",
1068
- "@parcel/watcher-darwin-arm64": "2.5.1",
1069
- "@parcel/watcher-darwin-x64": "2.5.1",
1070
- "@parcel/watcher-freebsd-x64": "2.5.1",
1071
- "@parcel/watcher-linux-arm-glibc": "2.5.1",
1072
- "@parcel/watcher-linux-arm-musl": "2.5.1",
1073
- "@parcel/watcher-linux-arm64-glibc": "2.5.1",
1074
- "@parcel/watcher-linux-arm64-musl": "2.5.1",
1075
- "@parcel/watcher-linux-x64-glibc": "2.5.1",
1076
- "@parcel/watcher-linux-x64-musl": "2.5.1",
1077
- "@parcel/watcher-win32-arm64": "2.5.1",
1078
- "@parcel/watcher-win32-ia32": "2.5.1",
1079
- "@parcel/watcher-win32-x64": "2.5.1"
1080
- }
1081
- },
1082
- "node_modules/@parcel/watcher-android-arm64": {
1083
- "version": "2.5.1",
1084
- "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz",
1085
- "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==",
1086
- "cpu": [
1087
- "arm64"
1088
- ],
1089
- "dev": true,
1090
- "license": "MIT",
1091
- "optional": true,
1092
- "os": [
1093
- "android"
1094
- ],
1095
- "engines": {
1096
- "node": ">= 10.0.0"
1097
- },
1098
- "funding": {
1099
- "type": "opencollective",
1100
- "url": "https://opencollective.com/parcel"
1101
- }
1102
- },
1103
- "node_modules/@parcel/watcher-darwin-arm64": {
1104
- "version": "2.5.1",
1105
- "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz",
1106
- "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==",
1107
- "cpu": [
1108
- "arm64"
1109
- ],
1110
- "dev": true,
1111
- "license": "MIT",
1112
- "optional": true,
1113
- "os": [
1114
- "darwin"
1115
- ],
1116
- "engines": {
1117
- "node": ">= 10.0.0"
1118
- },
1119
- "funding": {
1120
- "type": "opencollective",
1121
- "url": "https://opencollective.com/parcel"
1122
- }
1123
- },
1124
- "node_modules/@parcel/watcher-darwin-x64": {
1125
- "version": "2.5.1",
1126
- "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz",
1127
- "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==",
1128
- "cpu": [
1129
- "x64"
1130
- ],
1131
- "dev": true,
1132
- "license": "MIT",
1133
- "optional": true,
1134
- "os": [
1135
- "darwin"
1136
- ],
1137
- "engines": {
1138
- "node": ">= 10.0.0"
1139
- },
1140
- "funding": {
1141
- "type": "opencollective",
1142
- "url": "https://opencollective.com/parcel"
1143
- }
1144
- },
1145
- "node_modules/@parcel/watcher-freebsd-x64": {
1146
- "version": "2.5.1",
1147
- "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz",
1148
- "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==",
1149
- "cpu": [
1150
- "x64"
1151
- ],
1152
- "dev": true,
1153
- "license": "MIT",
1154
- "optional": true,
1155
- "os": [
1156
- "freebsd"
1157
- ],
1158
- "engines": {
1159
- "node": ">= 10.0.0"
1160
- },
1161
- "funding": {
1162
- "type": "opencollective",
1163
- "url": "https://opencollective.com/parcel"
1164
- }
1165
- },
1166
- "node_modules/@parcel/watcher-linux-arm-glibc": {
1167
- "version": "2.5.1",
1168
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz",
1169
- "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==",
1170
- "cpu": [
1171
- "arm"
1172
- ],
1173
- "dev": true,
1174
- "license": "MIT",
1175
- "optional": true,
1176
- "os": [
1177
- "linux"
1178
- ],
1179
- "engines": {
1180
- "node": ">= 10.0.0"
1181
- },
1182
- "funding": {
1183
- "type": "opencollective",
1184
- "url": "https://opencollective.com/parcel"
1185
- }
1186
- },
1187
- "node_modules/@parcel/watcher-linux-arm-musl": {
1188
- "version": "2.5.1",
1189
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz",
1190
- "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==",
1191
- "cpu": [
1192
- "arm"
1193
- ],
1194
- "dev": true,
1195
- "license": "MIT",
1196
- "optional": true,
1197
- "os": [
1198
- "linux"
1199
- ],
1200
- "engines": {
1201
- "node": ">= 10.0.0"
1202
- },
1203
- "funding": {
1204
- "type": "opencollective",
1205
- "url": "https://opencollective.com/parcel"
1206
- }
1207
- },
1208
- "node_modules/@parcel/watcher-linux-arm64-glibc": {
1209
- "version": "2.5.1",
1210
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz",
1211
- "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==",
1212
- "cpu": [
1213
- "arm64"
1214
- ],
1215
- "dev": true,
1216
- "license": "MIT",
1217
- "optional": true,
1218
- "os": [
1219
- "linux"
1220
- ],
1221
- "engines": {
1222
- "node": ">= 10.0.0"
1223
- },
1224
- "funding": {
1225
- "type": "opencollective",
1226
- "url": "https://opencollective.com/parcel"
1227
- }
1228
- },
1229
- "node_modules/@parcel/watcher-linux-arm64-musl": {
1230
- "version": "2.5.1",
1231
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz",
1232
- "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==",
1233
- "cpu": [
1234
- "arm64"
1235
- ],
1236
- "dev": true,
1237
- "license": "MIT",
1238
- "optional": true,
1239
- "os": [
1240
- "linux"
1241
- ],
1242
- "engines": {
1243
- "node": ">= 10.0.0"
1244
- },
1245
- "funding": {
1246
- "type": "opencollective",
1247
- "url": "https://opencollective.com/parcel"
1248
- }
1249
- },
1250
- "node_modules/@parcel/watcher-linux-x64-glibc": {
1251
- "version": "2.5.1",
1252
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz",
1253
- "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==",
1254
- "cpu": [
1255
- "x64"
1256
- ],
1257
- "dev": true,
1258
- "license": "MIT",
1259
- "optional": true,
1260
- "os": [
1261
- "linux"
1262
- ],
1263
- "engines": {
1264
- "node": ">= 10.0.0"
1265
- },
1266
- "funding": {
1267
- "type": "opencollective",
1268
- "url": "https://opencollective.com/parcel"
1269
- }
1270
- },
1271
- "node_modules/@parcel/watcher-linux-x64-musl": {
1272
- "version": "2.5.1",
1273
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz",
1274
- "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==",
1275
- "cpu": [
1276
- "x64"
1277
- ],
1278
- "dev": true,
1279
- "license": "MIT",
1280
- "optional": true,
1281
- "os": [
1282
- "linux"
1283
- ],
1284
- "engines": {
1285
- "node": ">= 10.0.0"
1286
- },
1287
- "funding": {
1288
- "type": "opencollective",
1289
- "url": "https://opencollective.com/parcel"
1290
- }
1291
- },
1292
- "node_modules/@parcel/watcher-win32-arm64": {
1293
- "version": "2.5.1",
1294
- "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz",
1295
- "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==",
1296
- "cpu": [
1297
- "arm64"
1298
- ],
1299
- "dev": true,
1300
- "license": "MIT",
1301
- "optional": true,
1302
- "os": [
1303
- "win32"
1304
- ],
1305
- "engines": {
1306
- "node": ">= 10.0.0"
1307
- },
1308
- "funding": {
1309
- "type": "opencollective",
1310
- "url": "https://opencollective.com/parcel"
1311
- }
1312
- },
1313
- "node_modules/@parcel/watcher-win32-ia32": {
1314
- "version": "2.5.1",
1315
- "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz",
1316
- "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==",
1317
- "cpu": [
1318
- "ia32"
1319
- ],
1320
- "dev": true,
1321
- "license": "MIT",
1322
- "optional": true,
1323
- "os": [
1324
- "win32"
1325
- ],
1326
- "engines": {
1327
- "node": ">= 10.0.0"
1328
- },
1329
- "funding": {
1330
- "type": "opencollective",
1331
- "url": "https://opencollective.com/parcel"
1332
- }
1333
- },
1334
- "node_modules/@parcel/watcher-win32-x64": {
1335
- "version": "2.5.1",
1336
- "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz",
1337
- "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==",
1338
- "cpu": [
1339
- "x64"
1340
- ],
1341
- "dev": true,
1342
- "license": "MIT",
1343
- "optional": true,
1344
- "os": [
1345
- "win32"
1346
- ],
1347
- "engines": {
1348
- "node": ">= 10.0.0"
1349
- },
1350
- "funding": {
1351
- "type": "opencollective",
1352
- "url": "https://opencollective.com/parcel"
1353
- }
1354
- },
1355
- "node_modules/@pkgr/core": {
1356
- "version": "0.2.9",
1357
- "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.9.tgz",
1358
- "integrity": "sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==",
1359
- "dev": true,
1360
- "license": "MIT",
1361
- "engines": {
1362
- "node": "^12.20.0 || ^14.18.0 || >=16.0.0"
1363
- },
1364
- "funding": {
1365
- "url": "https://opencollective.com/pkgr"
1366
- }
1367
- },
1368
- "node_modules/@rolldown/pluginutils": {
1369
- "version": "1.0.0-beta.53",
1370
- "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.53.tgz",
1371
- "integrity": "sha512-vENRlFU4YbrwVqNDZ7fLvy+JR1CRkyr01jhSiDpE1u6py3OMzQfztQU2jxykW3ALNxO4kSlqIDeYyD0Y9RcQeQ==",
1372
- "dev": true,
1373
- "license": "MIT"
1374
- },
1375
- "node_modules/@rollup/rollup-android-arm-eabi": {
1376
- "version": "4.53.3",
1377
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.3.tgz",
1378
- "integrity": "sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==",
1379
- "cpu": [
1380
- "arm"
1381
- ],
1382
- "dev": true,
1383
- "license": "MIT",
1384
- "optional": true,
1385
- "os": [
1386
- "android"
1387
- ]
1388
- },
1389
- "node_modules/@rollup/rollup-android-arm64": {
1390
- "version": "4.53.3",
1391
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.3.tgz",
1392
- "integrity": "sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==",
1393
- "cpu": [
1394
- "arm64"
1395
- ],
1396
- "dev": true,
1397
- "license": "MIT",
1398
- "optional": true,
1399
- "os": [
1400
- "android"
1401
- ]
1402
- },
1403
- "node_modules/@rollup/rollup-darwin-arm64": {
1404
- "version": "4.53.3",
1405
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.3.tgz",
1406
- "integrity": "sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==",
1407
- "cpu": [
1408
- "arm64"
1409
- ],
1410
- "dev": true,
1411
- "license": "MIT",
1412
- "optional": true,
1413
- "os": [
1414
- "darwin"
1415
- ]
1416
- },
1417
- "node_modules/@rollup/rollup-darwin-x64": {
1418
- "version": "4.53.3",
1419
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.3.tgz",
1420
- "integrity": "sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==",
1421
- "cpu": [
1422
- "x64"
1423
- ],
1424
- "dev": true,
1425
- "license": "MIT",
1426
- "optional": true,
1427
- "os": [
1428
- "darwin"
1429
- ]
1430
- },
1431
- "node_modules/@rollup/rollup-freebsd-arm64": {
1432
- "version": "4.53.3",
1433
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.3.tgz",
1434
- "integrity": "sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==",
1435
- "cpu": [
1436
- "arm64"
1437
- ],
1438
- "dev": true,
1439
- "license": "MIT",
1440
- "optional": true,
1441
- "os": [
1442
- "freebsd"
1443
- ]
1444
- },
1445
- "node_modules/@rollup/rollup-freebsd-x64": {
1446
- "version": "4.53.3",
1447
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.3.tgz",
1448
- "integrity": "sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==",
1449
- "cpu": [
1450
- "x64"
1451
- ],
1452
- "dev": true,
1453
- "license": "MIT",
1454
- "optional": true,
1455
- "os": [
1456
- "freebsd"
1457
- ]
1458
- },
1459
- "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
1460
- "version": "4.53.3",
1461
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.3.tgz",
1462
- "integrity": "sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==",
1463
- "cpu": [
1464
- "arm"
1465
- ],
1466
- "dev": true,
1467
- "license": "MIT",
1468
- "optional": true,
1469
- "os": [
1470
- "linux"
1471
- ]
1472
- },
1473
- "node_modules/@rollup/rollup-linux-arm-musleabihf": {
1474
- "version": "4.53.3",
1475
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.3.tgz",
1476
- "integrity": "sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==",
1477
- "cpu": [
1478
- "arm"
1479
- ],
1480
- "dev": true,
1481
- "license": "MIT",
1482
- "optional": true,
1483
- "os": [
1484
- "linux"
1485
- ]
1486
- },
1487
- "node_modules/@rollup/rollup-linux-arm64-gnu": {
1488
- "version": "4.53.3",
1489
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.3.tgz",
1490
- "integrity": "sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==",
1491
- "cpu": [
1492
- "arm64"
1493
- ],
1494
- "dev": true,
1495
- "license": "MIT",
1496
- "optional": true,
1497
- "os": [
1498
- "linux"
1499
- ]
1500
- },
1501
- "node_modules/@rollup/rollup-linux-arm64-musl": {
1502
- "version": "4.53.3",
1503
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.3.tgz",
1504
- "integrity": "sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==",
1505
- "cpu": [
1506
- "arm64"
1507
- ],
1508
- "dev": true,
1509
- "license": "MIT",
1510
- "optional": true,
1511
- "os": [
1512
- "linux"
1513
- ]
1514
- },
1515
- "node_modules/@rollup/rollup-linux-loong64-gnu": {
1516
- "version": "4.53.3",
1517
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.3.tgz",
1518
- "integrity": "sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==",
1519
- "cpu": [
1520
- "loong64"
1521
- ],
1522
- "dev": true,
1523
- "license": "MIT",
1524
- "optional": true,
1525
- "os": [
1526
- "linux"
1527
- ]
1528
- },
1529
- "node_modules/@rollup/rollup-linux-ppc64-gnu": {
1530
- "version": "4.53.3",
1531
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.3.tgz",
1532
- "integrity": "sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==",
1533
- "cpu": [
1534
- "ppc64"
1535
- ],
1536
- "dev": true,
1537
- "license": "MIT",
1538
- "optional": true,
1539
- "os": [
1540
- "linux"
1541
- ]
1542
- },
1543
- "node_modules/@rollup/rollup-linux-riscv64-gnu": {
1544
- "version": "4.53.3",
1545
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.3.tgz",
1546
- "integrity": "sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==",
1547
- "cpu": [
1548
- "riscv64"
1549
- ],
1550
- "dev": true,
1551
- "license": "MIT",
1552
- "optional": true,
1553
- "os": [
1554
- "linux"
1555
- ]
1556
- },
1557
- "node_modules/@rollup/rollup-linux-riscv64-musl": {
1558
- "version": "4.53.3",
1559
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.3.tgz",
1560
- "integrity": "sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==",
1561
- "cpu": [
1562
- "riscv64"
1563
- ],
1564
- "dev": true,
1565
- "license": "MIT",
1566
- "optional": true,
1567
- "os": [
1568
- "linux"
1569
- ]
1570
- },
1571
- "node_modules/@rollup/rollup-linux-s390x-gnu": {
1572
- "version": "4.53.3",
1573
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.3.tgz",
1574
- "integrity": "sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==",
1575
- "cpu": [
1576
- "s390x"
1577
- ],
1578
- "dev": true,
1579
- "license": "MIT",
1580
- "optional": true,
1581
- "os": [
1582
- "linux"
1583
- ]
1584
- },
1585
- "node_modules/@rollup/rollup-linux-x64-gnu": {
1586
- "version": "4.53.3",
1587
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.3.tgz",
1588
- "integrity": "sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==",
1589
- "cpu": [
1590
- "x64"
1591
- ],
1592
- "dev": true,
1593
- "license": "MIT",
1594
- "optional": true,
1595
- "os": [
1596
- "linux"
1597
- ]
1598
- },
1599
- "node_modules/@rollup/rollup-linux-x64-musl": {
1600
- "version": "4.53.3",
1601
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.3.tgz",
1602
- "integrity": "sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==",
1603
- "cpu": [
1604
- "x64"
1605
- ],
1606
- "dev": true,
1607
- "license": "MIT",
1608
- "optional": true,
1609
- "os": [
1610
- "linux"
1611
- ]
1612
- },
1613
- "node_modules/@rollup/rollup-openharmony-arm64": {
1614
- "version": "4.53.3",
1615
- "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.3.tgz",
1616
- "integrity": "sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==",
1617
- "cpu": [
1618
- "arm64"
1619
- ],
1620
- "dev": true,
1621
- "license": "MIT",
1622
- "optional": true,
1623
- "os": [
1624
- "openharmony"
1625
- ]
1626
- },
1627
- "node_modules/@rollup/rollup-win32-arm64-msvc": {
1628
- "version": "4.53.3",
1629
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.3.tgz",
1630
- "integrity": "sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==",
1631
- "cpu": [
1632
- "arm64"
1633
- ],
1634
- "dev": true,
1635
- "license": "MIT",
1636
- "optional": true,
1637
- "os": [
1638
- "win32"
1639
- ]
1640
- },
1641
- "node_modules/@rollup/rollup-win32-ia32-msvc": {
1642
- "version": "4.53.3",
1643
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.3.tgz",
1644
- "integrity": "sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==",
1645
- "cpu": [
1646
- "ia32"
1647
- ],
1648
- "dev": true,
1649
- "license": "MIT",
1650
- "optional": true,
1651
- "os": [
1652
- "win32"
1653
- ]
1654
- },
1655
- "node_modules/@rollup/rollup-win32-x64-gnu": {
1656
- "version": "4.53.3",
1657
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.3.tgz",
1658
- "integrity": "sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==",
1659
- "cpu": [
1660
- "x64"
1661
- ],
1662
- "dev": true,
1663
- "license": "MIT",
1664
- "optional": true,
1665
- "os": [
1666
- "win32"
1667
- ]
1668
- },
1669
- "node_modules/@rollup/rollup-win32-x64-msvc": {
1670
- "version": "4.53.3",
1671
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.3.tgz",
1672
- "integrity": "sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==",
1673
- "cpu": [
1674
- "x64"
1675
- ],
1676
- "dev": true,
1677
- "license": "MIT",
1678
- "optional": true,
1679
- "os": [
1680
- "win32"
1681
- ]
1682
- },
1683
- "node_modules/@tweenjs/tween.js": {
1684
- "version": "23.1.3",
1685
- "resolved": "https://registry.npmjs.org/@tweenjs/tween.js/-/tween.js-23.1.3.tgz",
1686
- "integrity": "sha512-vJmvvwFxYuGnF2axRtPYocag6Clbb5YS7kLL+SO/TeVFzHqDIWrNKYtcsPMibjDx9O+bu+psAy9NKfWklassUA==",
1687
- "dev": true,
1688
- "license": "MIT"
1689
- },
1690
- "node_modules/@types/babel__core": {
1691
- "version": "7.20.5",
1692
- "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
1693
- "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
1694
- "dev": true,
1695
- "license": "MIT",
1696
- "dependencies": {
1697
- "@babel/parser": "^7.20.7",
1698
- "@babel/types": "^7.20.7",
1699
- "@types/babel__generator": "*",
1700
- "@types/babel__template": "*",
1701
- "@types/babel__traverse": "*"
1702
- }
1703
- },
1704
- "node_modules/@types/babel__generator": {
1705
- "version": "7.27.0",
1706
- "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
1707
- "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
1708
- "dev": true,
1709
- "license": "MIT",
1710
- "dependencies": {
1711
- "@babel/types": "^7.0.0"
1712
- }
1713
- },
1714
- "node_modules/@types/babel__template": {
1715
- "version": "7.4.4",
1716
- "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
1717
- "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
1718
- "dev": true,
1719
- "license": "MIT",
1720
- "dependencies": {
1721
- "@babel/parser": "^7.1.0",
1722
- "@babel/types": "^7.0.0"
1723
- }
1724
- },
1725
- "node_modules/@types/babel__traverse": {
1726
- "version": "7.28.0",
1727
- "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
1728
- "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
1729
- "dev": true,
1730
- "license": "MIT",
1731
- "dependencies": {
1732
- "@babel/types": "^7.28.2"
1733
- }
1734
- },
1735
- "node_modules/@types/estree": {
1736
- "version": "1.0.8",
1737
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
1738
- "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
1739
- "dev": true,
1740
- "license": "MIT"
1741
- },
1742
- "node_modules/@types/howler": {
1743
- "version": "2.2.12",
1744
- "resolved": "https://registry.npmjs.org/@types/howler/-/howler-2.2.12.tgz",
1745
- "integrity": "sha512-hy769UICzOSdK0Kn1FBk4gN+lswcj1EKRkmiDtMkUGvFfYJzgaDXmVXkSShS2m89ERAatGIPnTUlp2HhfkVo5g==",
1746
- "dev": true,
1747
- "license": "MIT"
1748
- },
1749
- "node_modules/@types/json-schema": {
1750
- "version": "7.0.15",
1751
- "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
1752
- "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
1753
- "dev": true,
1754
- "license": "MIT"
1755
- },
1756
- "node_modules/@types/node": {
1757
- "version": "25.0.3",
1758
- "resolved": "https://registry.npmjs.org/@types/node/-/node-25.0.3.tgz",
1759
- "integrity": "sha512-W609buLVRVmeW693xKfzHeIV6nJGGz98uCPfeXI1ELMLXVeKYZ9m15fAMSaUPBHYLGFsVRcMmSCksQOrZV9BYA==",
1760
- "dev": true,
1761
- "license": "MIT",
1762
- "dependencies": {
1763
- "undici-types": "~7.16.0"
1764
- }
1765
- },
1766
- "node_modules/@types/react": {
1767
- "version": "19.2.7",
1768
- "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.7.tgz",
1769
- "integrity": "sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==",
1770
- "dev": true,
1771
- "license": "MIT",
1772
- "dependencies": {
1773
- "csstype": "^3.2.2"
1774
- }
1775
- },
1776
- "node_modules/@types/react-dom": {
1777
- "version": "19.2.3",
1778
- "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
1779
- "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
1780
- "dev": true,
1781
- "license": "MIT",
1782
- "peerDependencies": {
1783
- "@types/react": "^19.2.0"
1784
- }
1785
- },
1786
- "node_modules/@types/stats.js": {
1787
- "version": "0.17.4",
1788
- "resolved": "https://registry.npmjs.org/@types/stats.js/-/stats.js-0.17.4.tgz",
1789
- "integrity": "sha512-jIBvWWShCvlBqBNIZt0KAshWpvSjhkwkEu4ZUcASoAvhmrgAUI2t1dXrjSL4xXVLB4FznPrIsX3nKXFl/Dt4vA==",
1790
- "dev": true,
1791
- "license": "MIT"
1792
- },
1793
- "node_modules/@types/three": {
1794
- "version": "0.182.0",
1795
- "resolved": "https://registry.npmjs.org/@types/three/-/three-0.182.0.tgz",
1796
- "integrity": "sha512-WByN9V3Sbwbe2OkWuSGyoqQO8Du6yhYaXtXLoA5FkKTUJorZ+yOHBZ35zUUPQXlAKABZmbYp5oAqpA4RBjtJ/Q==",
1797
- "dev": true,
1798
- "license": "MIT",
1799
- "dependencies": {
1800
- "@dimforge/rapier3d-compat": "~0.12.0",
1801
- "@tweenjs/tween.js": "~23.1.3",
1802
- "@types/stats.js": "*",
1803
- "@types/webxr": ">=0.5.17",
1804
- "@webgpu/types": "*",
1805
- "fflate": "~0.8.2",
1806
- "meshoptimizer": "~0.22.0"
1807
- }
1808
- },
1809
- "node_modules/@types/webxr": {
1810
- "version": "0.5.24",
1811
- "resolved": "https://registry.npmjs.org/@types/webxr/-/webxr-0.5.24.tgz",
1812
- "integrity": "sha512-h8fgEd/DpoS9CBrjEQXR+dIDraopAEfu4wYVNY2tEPwk60stPWhvZMf4Foo5FakuQ7HFZoa8WceaWFervK2Ovg==",
1813
- "dev": true,
1814
- "license": "MIT"
1815
- },
1816
- "node_modules/@typescript-eslint/eslint-plugin": {
1817
- "version": "8.50.1",
1818
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.50.1.tgz",
1819
- "integrity": "sha512-PKhLGDq3JAg0Jk/aK890knnqduuI/Qj+udH7wCf0217IGi4gt+acgCyPVe79qoT+qKUvHMDQkwJeKW9fwl8Cyw==",
1820
- "dev": true,
1821
- "license": "MIT",
1822
- "dependencies": {
1823
- "@eslint-community/regexpp": "^4.10.0",
1824
- "@typescript-eslint/scope-manager": "8.50.1",
1825
- "@typescript-eslint/type-utils": "8.50.1",
1826
- "@typescript-eslint/utils": "8.50.1",
1827
- "@typescript-eslint/visitor-keys": "8.50.1",
1828
- "ignore": "^7.0.0",
1829
- "natural-compare": "^1.4.0",
1830
- "ts-api-utils": "^2.1.0"
1831
- },
1832
- "engines": {
1833
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1834
- },
1835
- "funding": {
1836
- "type": "opencollective",
1837
- "url": "https://opencollective.com/typescript-eslint"
1838
- },
1839
- "peerDependencies": {
1840
- "@typescript-eslint/parser": "^8.50.1",
1841
- "eslint": "^8.57.0 || ^9.0.0",
1842
- "typescript": ">=4.8.4 <6.0.0"
1843
- }
1844
- },
1845
- "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
1846
- "version": "7.0.5",
1847
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
1848
- "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
1849
- "dev": true,
1850
- "license": "MIT",
1851
- "engines": {
1852
- "node": ">= 4"
1853
- }
1854
- },
1855
- "node_modules/@typescript-eslint/parser": {
1856
- "version": "8.50.1",
1857
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.50.1.tgz",
1858
- "integrity": "sha512-hM5faZwg7aVNa819m/5r7D0h0c9yC4DUlWAOvHAtISdFTc8xB86VmX5Xqabrama3wIPJ/q9RbGS1worb6JfnMg==",
1859
- "dev": true,
1860
- "license": "MIT",
1861
- "dependencies": {
1862
- "@typescript-eslint/scope-manager": "8.50.1",
1863
- "@typescript-eslint/types": "8.50.1",
1864
- "@typescript-eslint/typescript-estree": "8.50.1",
1865
- "@typescript-eslint/visitor-keys": "8.50.1",
1866
- "debug": "^4.3.4"
1867
- },
1868
- "engines": {
1869
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1870
- },
1871
- "funding": {
1872
- "type": "opencollective",
1873
- "url": "https://opencollective.com/typescript-eslint"
1874
- },
1875
- "peerDependencies": {
1876
- "eslint": "^8.57.0 || ^9.0.0",
1877
- "typescript": ">=4.8.4 <6.0.0"
1878
- }
1879
- },
1880
- "node_modules/@typescript-eslint/project-service": {
1881
- "version": "8.50.1",
1882
- "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.50.1.tgz",
1883
- "integrity": "sha512-E1ur1MCVf+YiP89+o4Les/oBAVzmSbeRB0MQLfSlYtbWU17HPxZ6Bhs5iYmKZRALvEuBoXIZMOIRRc/P++Ortg==",
1884
- "dev": true,
1885
- "license": "MIT",
1886
- "dependencies": {
1887
- "@typescript-eslint/tsconfig-utils": "^8.50.1",
1888
- "@typescript-eslint/types": "^8.50.1",
1889
- "debug": "^4.3.4"
1890
- },
1891
- "engines": {
1892
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1893
- },
1894
- "funding": {
1895
- "type": "opencollective",
1896
- "url": "https://opencollective.com/typescript-eslint"
1897
- },
1898
- "peerDependencies": {
1899
- "typescript": ">=4.8.4 <6.0.0"
1900
- }
1901
- },
1902
- "node_modules/@typescript-eslint/scope-manager": {
1903
- "version": "8.50.1",
1904
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.50.1.tgz",
1905
- "integrity": "sha512-mfRx06Myt3T4vuoHaKi8ZWNTPdzKPNBhiblze5N50//TSHOAQQevl/aolqA/BcqqbJ88GUnLqjjcBc8EWdBcVw==",
1906
- "dev": true,
1907
- "license": "MIT",
1908
- "dependencies": {
1909
- "@typescript-eslint/types": "8.50.1",
1910
- "@typescript-eslint/visitor-keys": "8.50.1"
1911
- },
1912
- "engines": {
1913
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1914
- },
1915
- "funding": {
1916
- "type": "opencollective",
1917
- "url": "https://opencollective.com/typescript-eslint"
1918
- }
1919
- },
1920
- "node_modules/@typescript-eslint/tsconfig-utils": {
1921
- "version": "8.50.1",
1922
- "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.50.1.tgz",
1923
- "integrity": "sha512-ooHmotT/lCWLXi55G4mvaUF60aJa012QzvLK0Y+Mp4WdSt17QhMhWOaBWeGTFVkb2gDgBe19Cxy1elPXylslDw==",
1924
- "dev": true,
1925
- "license": "MIT",
1926
- "engines": {
1927
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1928
- },
1929
- "funding": {
1930
- "type": "opencollective",
1931
- "url": "https://opencollective.com/typescript-eslint"
1932
- },
1933
- "peerDependencies": {
1934
- "typescript": ">=4.8.4 <6.0.0"
1935
- }
1936
- },
1937
- "node_modules/@typescript-eslint/type-utils": {
1938
- "version": "8.50.1",
1939
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.50.1.tgz",
1940
- "integrity": "sha512-7J3bf022QZE42tYMO6SL+6lTPKFk/WphhRPe9Tw/el+cEwzLz1Jjz2PX3GtGQVxooLDKeMVmMt7fWpYRdG5Etg==",
1941
- "dev": true,
1942
- "license": "MIT",
1943
- "dependencies": {
1944
- "@typescript-eslint/types": "8.50.1",
1945
- "@typescript-eslint/typescript-estree": "8.50.1",
1946
- "@typescript-eslint/utils": "8.50.1",
1947
- "debug": "^4.3.4",
1948
- "ts-api-utils": "^2.1.0"
1949
- },
1950
- "engines": {
1951
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1952
- },
1953
- "funding": {
1954
- "type": "opencollective",
1955
- "url": "https://opencollective.com/typescript-eslint"
1956
- },
1957
- "peerDependencies": {
1958
- "eslint": "^8.57.0 || ^9.0.0",
1959
- "typescript": ">=4.8.4 <6.0.0"
1960
- }
1961
- },
1962
- "node_modules/@typescript-eslint/types": {
1963
- "version": "8.50.1",
1964
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.50.1.tgz",
1965
- "integrity": "sha512-v5lFIS2feTkNyMhd7AucE/9j/4V9v5iIbpVRncjk/K0sQ6Sb+Np9fgYS/63n6nwqahHQvbmujeBL7mp07Q9mlA==",
1966
- "dev": true,
1967
- "license": "MIT",
1968
- "engines": {
1969
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1970
- },
1971
- "funding": {
1972
- "type": "opencollective",
1973
- "url": "https://opencollective.com/typescript-eslint"
1974
- }
1975
- },
1976
- "node_modules/@typescript-eslint/typescript-estree": {
1977
- "version": "8.50.1",
1978
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.50.1.tgz",
1979
- "integrity": "sha512-woHPdW+0gj53aM+cxchymJCrh0cyS7BTIdcDxWUNsclr9VDkOSbqC13juHzxOmQ22dDkMZEpZB+3X1WpUvzgVQ==",
1980
- "dev": true,
1981
- "license": "MIT",
1982
- "dependencies": {
1983
- "@typescript-eslint/project-service": "8.50.1",
1984
- "@typescript-eslint/tsconfig-utils": "8.50.1",
1985
- "@typescript-eslint/types": "8.50.1",
1986
- "@typescript-eslint/visitor-keys": "8.50.1",
1987
- "debug": "^4.3.4",
1988
- "minimatch": "^9.0.4",
1989
- "semver": "^7.6.0",
1990
- "tinyglobby": "^0.2.15",
1991
- "ts-api-utils": "^2.1.0"
1992
- },
1993
- "engines": {
1994
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1995
- },
1996
- "funding": {
1997
- "type": "opencollective",
1998
- "url": "https://opencollective.com/typescript-eslint"
1999
- },
2000
- "peerDependencies": {
2001
- "typescript": ">=4.8.4 <6.0.0"
2002
- }
2003
- },
2004
- "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
2005
- "version": "2.0.2",
2006
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
2007
- "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
2008
- "dev": true,
2009
- "license": "MIT",
2010
- "dependencies": {
2011
- "balanced-match": "^1.0.0"
2012
- }
2013
- },
2014
- "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
2015
- "version": "9.0.5",
2016
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
2017
- "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
2018
- "dev": true,
2019
- "license": "ISC",
2020
- "dependencies": {
2021
- "brace-expansion": "^2.0.1"
2022
- },
2023
- "engines": {
2024
- "node": ">=16 || 14 >=14.17"
2025
- },
2026
- "funding": {
2027
- "url": "https://github.com/sponsors/isaacs"
2028
- }
2029
- },
2030
- "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
2031
- "version": "7.7.3",
2032
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
2033
- "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
2034
- "dev": true,
2035
- "license": "ISC",
2036
- "bin": {
2037
- "semver": "bin/semver.js"
2038
- },
2039
- "engines": {
2040
- "node": ">=10"
2041
- }
2042
- },
2043
- "node_modules/@typescript-eslint/utils": {
2044
- "version": "8.50.1",
2045
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.50.1.tgz",
2046
- "integrity": "sha512-lCLp8H1T9T7gPbEuJSnHwnSuO9mDf8mfK/Nion5mZmiEaQD9sWf9W4dfeFqRyqRjF06/kBuTmAqcs9sewM2NbQ==",
2047
- "dev": true,
2048
- "license": "MIT",
2049
- "dependencies": {
2050
- "@eslint-community/eslint-utils": "^4.7.0",
2051
- "@typescript-eslint/scope-manager": "8.50.1",
2052
- "@typescript-eslint/types": "8.50.1",
2053
- "@typescript-eslint/typescript-estree": "8.50.1"
2054
- },
2055
- "engines": {
2056
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2057
- },
2058
- "funding": {
2059
- "type": "opencollective",
2060
- "url": "https://opencollective.com/typescript-eslint"
2061
- },
2062
- "peerDependencies": {
2063
- "eslint": "^8.57.0 || ^9.0.0",
2064
- "typescript": ">=4.8.4 <6.0.0"
2065
- }
2066
- },
2067
- "node_modules/@typescript-eslint/visitor-keys": {
2068
- "version": "8.50.1",
2069
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.50.1.tgz",
2070
- "integrity": "sha512-IrDKrw7pCRUR94zeuCSUWQ+w8JEf5ZX5jl/e6AHGSLi1/zIr0lgutfn/7JpfCey+urpgQEdrZVYzCaVVKiTwhQ==",
2071
- "dev": true,
2072
- "license": "MIT",
2073
- "dependencies": {
2074
- "@typescript-eslint/types": "8.50.1",
2075
- "eslint-visitor-keys": "^4.2.1"
2076
- },
2077
- "engines": {
2078
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2079
- },
2080
- "funding": {
2081
- "type": "opencollective",
2082
- "url": "https://opencollective.com/typescript-eslint"
2083
- }
2084
- },
2085
- "node_modules/@vitejs/plugin-react": {
2086
- "version": "5.1.2",
2087
- "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.1.2.tgz",
2088
- "integrity": "sha512-EcA07pHJouywpzsoTUqNh5NwGayl2PPVEJKUSinGGSxFGYn+shYbqMGBg6FXDqgXum9Ou/ecb+411ssw8HImJQ==",
2089
- "dev": true,
2090
- "license": "MIT",
2091
- "dependencies": {
2092
- "@babel/core": "^7.28.5",
2093
- "@babel/plugin-transform-react-jsx-self": "^7.27.1",
2094
- "@babel/plugin-transform-react-jsx-source": "^7.27.1",
2095
- "@rolldown/pluginutils": "1.0.0-beta.53",
2096
- "@types/babel__core": "^7.20.5",
2097
- "react-refresh": "^0.18.0"
2098
- },
2099
- "engines": {
2100
- "node": "^20.19.0 || >=22.12.0"
2101
- },
2102
- "peerDependencies": {
2103
- "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
2104
- }
2105
- },
2106
- "node_modules/@webgpu/types": {
2107
- "version": "0.1.67",
2108
- "resolved": "https://registry.npmjs.org/@webgpu/types/-/types-0.1.67.tgz",
2109
- "integrity": "sha512-uk53+2ECGUkWoDFez/hymwpRfdgdIn6y1ref70fEecGMe5607f4sozNFgBk0oxlr7j2CRGWBEc3IBYMmFdGGTQ==",
2110
- "dev": true,
2111
- "license": "BSD-3-Clause"
2112
- },
2113
- "node_modules/acorn": {
2114
- "version": "8.15.0",
2115
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
2116
- "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
2117
- "dev": true,
2118
- "license": "MIT",
2119
- "bin": {
2120
- "acorn": "bin/acorn"
2121
- },
2122
- "engines": {
2123
- "node": ">=0.4.0"
2124
- }
2125
- },
2126
- "node_modules/acorn-jsx": {
2127
- "version": "5.3.2",
2128
- "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
2129
- "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
2130
- "dev": true,
2131
- "license": "MIT",
2132
- "peerDependencies": {
2133
- "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
2134
- }
2135
- },
2136
- "node_modules/ajv": {
2137
- "version": "6.12.6",
2138
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
2139
- "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
2140
- "dev": true,
2141
- "license": "MIT",
2142
- "dependencies": {
2143
- "fast-deep-equal": "^3.1.1",
2144
- "fast-json-stable-stringify": "^2.0.0",
2145
- "json-schema-traverse": "^0.4.1",
2146
- "uri-js": "^4.2.2"
2147
- },
2148
- "funding": {
2149
- "type": "github",
2150
- "url": "https://github.com/sponsors/epoberezkin"
2151
- }
2152
- },
2153
- "node_modules/ansi-styles": {
2154
- "version": "4.3.0",
2155
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
2156
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
2157
- "dev": true,
2158
- "license": "MIT",
2159
- "dependencies": {
2160
- "color-convert": "^2.0.1"
2161
- },
2162
- "engines": {
2163
- "node": ">=8"
2164
- },
2165
- "funding": {
2166
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2167
- }
2168
- },
2169
- "node_modules/argparse": {
2170
- "version": "2.0.1",
2171
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
2172
- "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
2173
- "dev": true,
2174
- "license": "Python-2.0"
2175
- },
2176
- "node_modules/balanced-match": {
2177
- "version": "1.0.2",
2178
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
2179
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
2180
- "dev": true,
2181
- "license": "MIT"
2182
- },
2183
- "node_modules/baseline-browser-mapping": {
2184
- "version": "2.9.6",
2185
- "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.6.tgz",
2186
- "integrity": "sha512-v9BVVpOTLB59C9E7aSnmIF8h7qRsFpx+A2nugVMTszEOMcfjlZMsXRm4LF23I3Z9AJxc8ANpIvzbzONoX9VJlg==",
2187
- "dev": true,
2188
- "license": "Apache-2.0",
2189
- "bin": {
2190
- "baseline-browser-mapping": "dist/cli.js"
2191
- }
2192
- },
2193
- "node_modules/bidi-js": {
2194
- "version": "1.0.3",
2195
- "resolved": "https://registry.npmjs.org/bidi-js/-/bidi-js-1.0.3.tgz",
2196
- "integrity": "sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==",
2197
- "dev": true,
2198
- "license": "MIT",
2199
- "dependencies": {
2200
- "require-from-string": "^2.0.2"
2201
- }
2202
- },
2203
- "node_modules/brace-expansion": {
2204
- "version": "1.1.12",
2205
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
2206
- "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
2207
- "dev": true,
2208
- "license": "MIT",
2209
- "dependencies": {
2210
- "balanced-match": "^1.0.0",
2211
- "concat-map": "0.0.1"
2212
- }
2213
- },
2214
- "node_modules/braces": {
2215
- "version": "3.0.3",
2216
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
2217
- "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
2218
- "dev": true,
2219
- "license": "MIT",
2220
- "optional": true,
2221
- "dependencies": {
2222
- "fill-range": "^7.1.1"
2223
- },
2224
- "engines": {
2225
- "node": ">=8"
2226
- }
2227
- },
2228
- "node_modules/browserslist": {
2229
- "version": "4.28.1",
2230
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
2231
- "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
2232
- "dev": true,
2233
- "funding": [
2234
- {
2235
- "type": "opencollective",
2236
- "url": "https://opencollective.com/browserslist"
2237
- },
2238
- {
2239
- "type": "tidelift",
2240
- "url": "https://tidelift.com/funding/github/npm/browserslist"
2241
- },
2242
- {
2243
- "type": "github",
2244
- "url": "https://github.com/sponsors/ai"
2245
- }
2246
- ],
2247
- "license": "MIT",
2248
- "dependencies": {
2249
- "baseline-browser-mapping": "^2.9.0",
2250
- "caniuse-lite": "^1.0.30001759",
2251
- "electron-to-chromium": "^1.5.263",
2252
- "node-releases": "^2.0.27",
2253
- "update-browserslist-db": "^1.2.0"
2254
- },
2255
- "bin": {
2256
- "browserslist": "cli.js"
2257
- },
2258
- "engines": {
2259
- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
2260
- }
2261
- },
2262
- "node_modules/buffer-builder": {
2263
- "version": "0.2.0",
2264
- "resolved": "https://registry.npmjs.org/buffer-builder/-/buffer-builder-0.2.0.tgz",
2265
- "integrity": "sha512-7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg==",
2266
- "dev": true,
2267
- "license": "MIT/X11"
2268
- },
2269
- "node_modules/callsites": {
2270
- "version": "3.1.0",
2271
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
2272
- "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
2273
- "dev": true,
2274
- "license": "MIT",
2275
- "engines": {
2276
- "node": ">=6"
2277
- }
2278
- },
2279
- "node_modules/caniuse-lite": {
2280
- "version": "1.0.30001760",
2281
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001760.tgz",
2282
- "integrity": "sha512-7AAMPcueWELt1p3mi13HR/LHH0TJLT11cnwDJEs3xA4+CK/PLKeO9Kl1oru24htkyUKtkGCvAx4ohB0Ttry8Dw==",
2283
- "dev": true,
2284
- "funding": [
2285
- {
2286
- "type": "opencollective",
2287
- "url": "https://opencollective.com/browserslist"
2288
- },
2289
- {
2290
- "type": "tidelift",
2291
- "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
2292
- },
2293
- {
2294
- "type": "github",
2295
- "url": "https://github.com/sponsors/ai"
2296
- }
2297
- ],
2298
- "license": "CC-BY-4.0"
2299
- },
2300
- "node_modules/chalk": {
2301
- "version": "4.1.2",
2302
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
2303
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
2304
- "dev": true,
2305
- "license": "MIT",
2306
- "dependencies": {
2307
- "ansi-styles": "^4.1.0",
2308
- "supports-color": "^7.1.0"
2309
- },
2310
- "engines": {
2311
- "node": ">=10"
2312
- },
2313
- "funding": {
2314
- "url": "https://github.com/chalk/chalk?sponsor=1"
2315
- }
2316
- },
2317
- "node_modules/chokidar": {
2318
- "version": "4.0.3",
2319
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
2320
- "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
2321
- "dev": true,
2322
- "license": "MIT",
2323
- "optional": true,
2324
- "dependencies": {
2325
- "readdirp": "^4.0.1"
2326
- },
2327
- "engines": {
2328
- "node": ">= 14.16.0"
2329
- },
2330
- "funding": {
2331
- "url": "https://paulmillr.com/funding/"
2332
- }
2333
- },
2334
- "node_modules/color-convert": {
2335
- "version": "2.0.1",
2336
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
2337
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
2338
- "dev": true,
2339
- "license": "MIT",
2340
- "dependencies": {
2341
- "color-name": "~1.1.4"
2342
- },
2343
- "engines": {
2344
- "node": ">=7.0.0"
2345
- }
2346
- },
2347
- "node_modules/color-name": {
2348
- "version": "1.1.4",
2349
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
2350
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
2351
- "dev": true,
2352
- "license": "MIT"
2353
- },
2354
- "node_modules/colorjs.io": {
2355
- "version": "0.5.2",
2356
- "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.5.2.tgz",
2357
- "integrity": "sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==",
2358
- "dev": true,
2359
- "license": "MIT"
2360
- },
2361
- "node_modules/concat-map": {
2362
- "version": "0.0.1",
2363
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
2364
- "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
2365
- "dev": true,
2366
- "license": "MIT"
2367
- },
2368
- "node_modules/convert-source-map": {
2369
- "version": "2.0.0",
2370
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
2371
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
2372
- "dev": true,
2373
- "license": "MIT"
2374
- },
2375
- "node_modules/cross-spawn": {
2376
- "version": "7.0.6",
2377
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
2378
- "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
2379
- "dev": true,
2380
- "license": "MIT",
2381
- "dependencies": {
2382
- "path-key": "^3.1.0",
2383
- "shebang-command": "^2.0.0",
2384
- "which": "^2.0.1"
2385
- },
2386
- "engines": {
2387
- "node": ">= 8"
2388
- }
2389
- },
2390
- "node_modules/csstype": {
2391
- "version": "3.2.3",
2392
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
2393
- "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
2394
- "dev": true,
2395
- "license": "MIT"
2396
- },
2397
- "node_modules/debug": {
2398
- "version": "4.4.3",
2399
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
2400
- "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
2401
- "dev": true,
2402
- "license": "MIT",
2403
- "dependencies": {
2404
- "ms": "^2.1.3"
2405
- },
2406
- "engines": {
2407
- "node": ">=6.0"
2408
- },
2409
- "peerDependenciesMeta": {
2410
- "supports-color": {
2411
- "optional": true
2412
- }
2413
- }
2414
- },
2415
- "node_modules/deep-is": {
2416
- "version": "0.1.4",
2417
- "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
2418
- "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
2419
- "dev": true,
2420
- "license": "MIT"
2421
- },
2422
- "node_modules/detect-libc": {
2423
- "version": "1.0.3",
2424
- "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz",
2425
- "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==",
2426
- "dev": true,
2427
- "license": "Apache-2.0",
2428
- "optional": true,
2429
- "bin": {
2430
- "detect-libc": "bin/detect-libc.js"
2431
- },
2432
- "engines": {
2433
- "node": ">=0.10"
2434
- }
2435
- },
2436
- "node_modules/electron-to-chromium": {
2437
- "version": "1.5.267",
2438
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz",
2439
- "integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==",
2440
- "dev": true,
2441
- "license": "ISC"
2442
- },
2443
- "node_modules/esbuild": {
2444
- "version": "0.27.2",
2445
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.2.tgz",
2446
- "integrity": "sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==",
2447
- "dev": true,
2448
- "hasInstallScript": true,
2449
- "license": "MIT",
2450
- "bin": {
2451
- "esbuild": "bin/esbuild"
2452
- },
2453
- "engines": {
2454
- "node": ">=18"
2455
- },
2456
- "optionalDependencies": {
2457
- "@esbuild/aix-ppc64": "0.27.2",
2458
- "@esbuild/android-arm": "0.27.2",
2459
- "@esbuild/android-arm64": "0.27.2",
2460
- "@esbuild/android-x64": "0.27.2",
2461
- "@esbuild/darwin-arm64": "0.27.2",
2462
- "@esbuild/darwin-x64": "0.27.2",
2463
- "@esbuild/freebsd-arm64": "0.27.2",
2464
- "@esbuild/freebsd-x64": "0.27.2",
2465
- "@esbuild/linux-arm": "0.27.2",
2466
- "@esbuild/linux-arm64": "0.27.2",
2467
- "@esbuild/linux-ia32": "0.27.2",
2468
- "@esbuild/linux-loong64": "0.27.2",
2469
- "@esbuild/linux-mips64el": "0.27.2",
2470
- "@esbuild/linux-ppc64": "0.27.2",
2471
- "@esbuild/linux-riscv64": "0.27.2",
2472
- "@esbuild/linux-s390x": "0.27.2",
2473
- "@esbuild/linux-x64": "0.27.2",
2474
- "@esbuild/netbsd-arm64": "0.27.2",
2475
- "@esbuild/netbsd-x64": "0.27.2",
2476
- "@esbuild/openbsd-arm64": "0.27.2",
2477
- "@esbuild/openbsd-x64": "0.27.2",
2478
- "@esbuild/openharmony-arm64": "0.27.2",
2479
- "@esbuild/sunos-x64": "0.27.2",
2480
- "@esbuild/win32-arm64": "0.27.2",
2481
- "@esbuild/win32-ia32": "0.27.2",
2482
- "@esbuild/win32-x64": "0.27.2"
2483
- }
2484
- },
2485
- "node_modules/escalade": {
2486
- "version": "3.2.0",
2487
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
2488
- "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
2489
- "dev": true,
2490
- "license": "MIT",
2491
- "engines": {
2492
- "node": ">=6"
2493
- }
2494
- },
2495
- "node_modules/escape-string-regexp": {
2496
- "version": "4.0.0",
2497
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
2498
- "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
2499
- "dev": true,
2500
- "license": "MIT",
2501
- "engines": {
2502
- "node": ">=10"
2503
- },
2504
- "funding": {
2505
- "url": "https://github.com/sponsors/sindresorhus"
2506
- }
2507
- },
2508
- "node_modules/eslint": {
2509
- "version": "9.39.2",
2510
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.2.tgz",
2511
- "integrity": "sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==",
2512
- "dev": true,
2513
- "license": "MIT",
2514
- "dependencies": {
2515
- "@eslint-community/eslint-utils": "^4.8.0",
2516
- "@eslint-community/regexpp": "^4.12.1",
2517
- "@eslint/config-array": "^0.21.1",
2518
- "@eslint/config-helpers": "^0.4.2",
2519
- "@eslint/core": "^0.17.0",
2520
- "@eslint/eslintrc": "^3.3.1",
2521
- "@eslint/js": "9.39.2",
2522
- "@eslint/plugin-kit": "^0.4.1",
2523
- "@humanfs/node": "^0.16.6",
2524
- "@humanwhocodes/module-importer": "^1.0.1",
2525
- "@humanwhocodes/retry": "^0.4.2",
2526
- "@types/estree": "^1.0.6",
2527
- "ajv": "^6.12.4",
2528
- "chalk": "^4.0.0",
2529
- "cross-spawn": "^7.0.6",
2530
- "debug": "^4.3.2",
2531
- "escape-string-regexp": "^4.0.0",
2532
- "eslint-scope": "^8.4.0",
2533
- "eslint-visitor-keys": "^4.2.1",
2534
- "espree": "^10.4.0",
2535
- "esquery": "^1.5.0",
2536
- "esutils": "^2.0.2",
2537
- "fast-deep-equal": "^3.1.3",
2538
- "file-entry-cache": "^8.0.0",
2539
- "find-up": "^5.0.0",
2540
- "glob-parent": "^6.0.2",
2541
- "ignore": "^5.2.0",
2542
- "imurmurhash": "^0.1.4",
2543
- "is-glob": "^4.0.0",
2544
- "json-stable-stringify-without-jsonify": "^1.0.1",
2545
- "lodash.merge": "^4.6.2",
2546
- "minimatch": "^3.1.2",
2547
- "natural-compare": "^1.4.0",
2548
- "optionator": "^0.9.3"
2549
- },
2550
- "bin": {
2551
- "eslint": "bin/eslint.js"
2552
- },
2553
- "engines": {
2554
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2555
- },
2556
- "funding": {
2557
- "url": "https://eslint.org/donate"
2558
- },
2559
- "peerDependencies": {
2560
- "jiti": "*"
2561
- },
2562
- "peerDependenciesMeta": {
2563
- "jiti": {
2564
- "optional": true
2565
- }
2566
- }
2567
- },
2568
- "node_modules/eslint-config-prettier": {
2569
- "version": "10.1.8",
2570
- "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz",
2571
- "integrity": "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==",
2572
- "dev": true,
2573
- "license": "MIT",
2574
- "bin": {
2575
- "eslint-config-prettier": "bin/cli.js"
2576
- },
2577
- "funding": {
2578
- "url": "https://opencollective.com/eslint-config-prettier"
2579
- },
2580
- "peerDependencies": {
2581
- "eslint": ">=7.0.0"
2582
- }
2583
- },
2584
- "node_modules/eslint-plugin-prettier": {
2585
- "version": "5.5.4",
2586
- "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.5.4.tgz",
2587
- "integrity": "sha512-swNtI95SToIz05YINMA6Ox5R057IMAmWZ26GqPxusAp1TZzj+IdY9tXNWWD3vkF/wEqydCONcwjTFpxybBqZsg==",
2588
- "dev": true,
2589
- "license": "MIT",
2590
- "dependencies": {
2591
- "prettier-linter-helpers": "^1.0.0",
2592
- "synckit": "^0.11.7"
2593
- },
2594
- "engines": {
2595
- "node": "^14.18.0 || >=16.0.0"
2596
- },
2597
- "funding": {
2598
- "url": "https://opencollective.com/eslint-plugin-prettier"
2599
- },
2600
- "peerDependencies": {
2601
- "@types/eslint": ">=8.0.0",
2602
- "eslint": ">=8.0.0",
2603
- "eslint-config-prettier": ">= 7.0.0 <10.0.0 || >=10.1.0",
2604
- "prettier": ">=3.0.0"
2605
- },
2606
- "peerDependenciesMeta": {
2607
- "@types/eslint": {
2608
- "optional": true
2609
- },
2610
- "eslint-config-prettier": {
2611
- "optional": true
2612
- }
2613
- }
2614
- },
2615
- "node_modules/eslint-plugin-react-hooks": {
2616
- "version": "7.0.1",
2617
- "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.0.1.tgz",
2618
- "integrity": "sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==",
2619
- "dev": true,
2620
- "license": "MIT",
2621
- "dependencies": {
2622
- "@babel/core": "^7.24.4",
2623
- "@babel/parser": "^7.24.4",
2624
- "hermes-parser": "^0.25.1",
2625
- "zod": "^3.25.0 || ^4.0.0",
2626
- "zod-validation-error": "^3.5.0 || ^4.0.0"
2627
- },
2628
- "engines": {
2629
- "node": ">=18"
2630
- },
2631
- "peerDependencies": {
2632
- "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
2633
- }
2634
- },
2635
- "node_modules/eslint-plugin-react-refresh": {
2636
- "version": "0.4.26",
2637
- "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.26.tgz",
2638
- "integrity": "sha512-1RETEylht2O6FM/MvgnyvT+8K21wLqDNg4qD51Zj3guhjt433XbnnkVttHMyaVyAFD03QSV4LPS5iE3VQmO7XQ==",
2639
- "dev": true,
2640
- "license": "MIT",
2641
- "peerDependencies": {
2642
- "eslint": ">=8.40"
2643
- }
2644
- },
2645
- "node_modules/eslint-scope": {
2646
- "version": "8.4.0",
2647
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz",
2648
- "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==",
2649
- "dev": true,
2650
- "license": "BSD-2-Clause",
2651
- "dependencies": {
2652
- "esrecurse": "^4.3.0",
2653
- "estraverse": "^5.2.0"
2654
- },
2655
- "engines": {
2656
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2657
- },
2658
- "funding": {
2659
- "url": "https://opencollective.com/eslint"
2660
- }
2661
- },
2662
- "node_modules/eslint-visitor-keys": {
2663
- "version": "4.2.1",
2664
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
2665
- "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
2666
- "dev": true,
2667
- "license": "Apache-2.0",
2668
- "engines": {
2669
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2670
- },
2671
- "funding": {
2672
- "url": "https://opencollective.com/eslint"
2673
- }
2674
- },
2675
- "node_modules/espree": {
2676
- "version": "10.4.0",
2677
- "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz",
2678
- "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==",
2679
- "dev": true,
2680
- "license": "BSD-2-Clause",
2681
- "dependencies": {
2682
- "acorn": "^8.15.0",
2683
- "acorn-jsx": "^5.3.2",
2684
- "eslint-visitor-keys": "^4.2.1"
2685
- },
2686
- "engines": {
2687
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2688
- },
2689
- "funding": {
2690
- "url": "https://opencollective.com/eslint"
2691
- }
2692
- },
2693
- "node_modules/esquery": {
2694
- "version": "1.6.0",
2695
- "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz",
2696
- "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==",
2697
- "dev": true,
2698
- "license": "BSD-3-Clause",
2699
- "dependencies": {
2700
- "estraverse": "^5.1.0"
2701
- },
2702
- "engines": {
2703
- "node": ">=0.10"
2704
- }
2705
- },
2706
- "node_modules/esrecurse": {
2707
- "version": "4.3.0",
2708
- "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
2709
- "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
2710
- "dev": true,
2711
- "license": "BSD-2-Clause",
2712
- "dependencies": {
2713
- "estraverse": "^5.2.0"
2714
- },
2715
- "engines": {
2716
- "node": ">=4.0"
2717
- }
2718
- },
2719
- "node_modules/estraverse": {
2720
- "version": "5.3.0",
2721
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
2722
- "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
2723
- "dev": true,
2724
- "license": "BSD-2-Clause",
2725
- "engines": {
2726
- "node": ">=4.0"
2727
- }
2728
- },
2729
- "node_modules/esutils": {
2730
- "version": "2.0.3",
2731
- "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
2732
- "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
2733
- "dev": true,
2734
- "license": "BSD-2-Clause",
2735
- "engines": {
2736
- "node": ">=0.10.0"
2737
- }
2738
- },
2739
- "node_modules/fast-deep-equal": {
2740
- "version": "3.1.3",
2741
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
2742
- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
2743
- "dev": true,
2744
- "license": "MIT"
2745
- },
2746
- "node_modules/fast-diff": {
2747
- "version": "1.3.0",
2748
- "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz",
2749
- "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==",
2750
- "dev": true,
2751
- "license": "Apache-2.0"
2752
- },
2753
- "node_modules/fast-json-stable-stringify": {
2754
- "version": "2.1.0",
2755
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
2756
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
2757
- "dev": true,
2758
- "license": "MIT"
2759
- },
2760
- "node_modules/fast-levenshtein": {
2761
- "version": "2.0.6",
2762
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
2763
- "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
2764
- "dev": true,
2765
- "license": "MIT"
2766
- },
2767
- "node_modules/fdir": {
2768
- "version": "6.5.0",
2769
- "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
2770
- "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
2771
- "dev": true,
2772
- "license": "MIT",
2773
- "engines": {
2774
- "node": ">=12.0.0"
2775
- },
2776
- "peerDependencies": {
2777
- "picomatch": "^3 || ^4"
2778
- },
2779
- "peerDependenciesMeta": {
2780
- "picomatch": {
2781
- "optional": true
2782
- }
2783
- }
2784
- },
2785
- "node_modules/fflate": {
2786
- "version": "0.8.2",
2787
- "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.8.2.tgz",
2788
- "integrity": "sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==",
2789
- "dev": true,
2790
- "license": "MIT"
2791
- },
2792
- "node_modules/file-entry-cache": {
2793
- "version": "8.0.0",
2794
- "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
2795
- "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
2796
- "dev": true,
2797
- "license": "MIT",
2798
- "dependencies": {
2799
- "flat-cache": "^4.0.0"
2800
- },
2801
- "engines": {
2802
- "node": ">=16.0.0"
2803
- }
2804
- },
2805
- "node_modules/fill-range": {
2806
- "version": "7.1.1",
2807
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
2808
- "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
2809
- "dev": true,
2810
- "license": "MIT",
2811
- "optional": true,
2812
- "dependencies": {
2813
- "to-regex-range": "^5.0.1"
2814
- },
2815
- "engines": {
2816
- "node": ">=8"
2817
- }
2818
- },
2819
- "node_modules/find-up": {
2820
- "version": "5.0.0",
2821
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
2822
- "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
2823
- "dev": true,
2824
- "license": "MIT",
2825
- "dependencies": {
2826
- "locate-path": "^6.0.0",
2827
- "path-exists": "^4.0.0"
2828
- },
2829
- "engines": {
2830
- "node": ">=10"
2831
- },
2832
- "funding": {
2833
- "url": "https://github.com/sponsors/sindresorhus"
2834
- }
2835
- },
2836
- "node_modules/flat-cache": {
2837
- "version": "4.0.1",
2838
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
2839
- "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
2840
- "dev": true,
2841
- "license": "MIT",
2842
- "dependencies": {
2843
- "flatted": "^3.2.9",
2844
- "keyv": "^4.5.4"
2845
- },
2846
- "engines": {
2847
- "node": ">=16"
2848
- }
2849
- },
2850
- "node_modules/flatted": {
2851
- "version": "3.3.3",
2852
- "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz",
2853
- "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==",
2854
- "dev": true,
2855
- "license": "ISC"
2856
- },
2857
- "node_modules/fsevents": {
2858
- "version": "2.3.3",
2859
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
2860
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
2861
- "dev": true,
2862
- "hasInstallScript": true,
2863
- "license": "MIT",
2864
- "optional": true,
2865
- "os": [
2866
- "darwin"
2867
- ],
2868
- "engines": {
2869
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2870
- }
2871
- },
2872
- "node_modules/gensync": {
2873
- "version": "1.0.0-beta.2",
2874
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
2875
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
2876
- "dev": true,
2877
- "license": "MIT",
2878
- "engines": {
2879
- "node": ">=6.9.0"
2880
- }
2881
- },
2882
- "node_modules/glob-parent": {
2883
- "version": "6.0.2",
2884
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
2885
- "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
2886
- "dev": true,
2887
- "license": "ISC",
2888
- "dependencies": {
2889
- "is-glob": "^4.0.3"
2890
- },
2891
- "engines": {
2892
- "node": ">=10.13.0"
2893
- }
2894
- },
2895
- "node_modules/globals": {
2896
- "version": "16.5.0",
2897
- "resolved": "https://registry.npmjs.org/globals/-/globals-16.5.0.tgz",
2898
- "integrity": "sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==",
2899
- "dev": true,
2900
- "license": "MIT",
2901
- "engines": {
2902
- "node": ">=18"
2903
- },
2904
- "funding": {
2905
- "url": "https://github.com/sponsors/sindresorhus"
2906
- }
2907
- },
2908
- "node_modules/gsap": {
2909
- "version": "3.14.2",
2910
- "resolved": "https://registry.npmjs.org/gsap/-/gsap-3.14.2.tgz",
2911
- "integrity": "sha512-P8/mMxVLU7o4+55+1TCnQrPmgjPKnwkzkXOK1asnR9Jg2lna4tEY5qBJjMmAaOBDDZWtlRjBXjLa0w53G/uBLA==",
2912
- "license": "Standard 'no charge' license: https://gsap.com/standard-license."
2913
- },
2914
- "node_modules/has-flag": {
2915
- "version": "4.0.0",
2916
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
2917
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2918
- "dev": true,
2919
- "license": "MIT",
2920
- "engines": {
2921
- "node": ">=8"
2922
- }
2923
- },
2924
- "node_modules/hermes-estree": {
2925
- "version": "0.25.1",
2926
- "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz",
2927
- "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==",
2928
- "dev": true,
2929
- "license": "MIT"
2930
- },
2931
- "node_modules/hermes-parser": {
2932
- "version": "0.25.1",
2933
- "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz",
2934
- "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==",
2935
- "dev": true,
2936
- "license": "MIT",
2937
- "dependencies": {
2938
- "hermes-estree": "0.25.1"
2939
- }
2940
- },
2941
- "node_modules/howler": {
2942
- "version": "2.2.4",
2943
- "resolved": "https://registry.npmjs.org/howler/-/howler-2.2.4.tgz",
2944
- "integrity": "sha512-iARIBPgcQrwtEr+tALF+rapJ8qSc+Set2GJQl7xT1MQzWaVkFebdJhR3alVlSiUf5U7nAANKuj3aWpwerocD5w==",
2945
- "license": "MIT"
2946
- },
2947
- "node_modules/ignore": {
2948
- "version": "5.3.2",
2949
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
2950
- "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
2951
- "dev": true,
2952
- "license": "MIT",
2953
- "engines": {
2954
- "node": ">= 4"
2955
- }
2956
- },
2957
- "node_modules/immutable": {
2958
- "version": "5.1.4",
2959
- "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.4.tgz",
2960
- "integrity": "sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==",
2961
- "dev": true,
2962
- "license": "MIT"
2963
- },
2964
- "node_modules/import-fresh": {
2965
- "version": "3.3.1",
2966
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
2967
- "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
2968
- "dev": true,
2969
- "license": "MIT",
2970
- "dependencies": {
2971
- "parent-module": "^1.0.0",
2972
- "resolve-from": "^4.0.0"
2973
- },
2974
- "engines": {
2975
- "node": ">=6"
2976
- },
2977
- "funding": {
2978
- "url": "https://github.com/sponsors/sindresorhus"
2979
- }
2980
- },
2981
- "node_modules/imurmurhash": {
2982
- "version": "0.1.4",
2983
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
2984
- "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
2985
- "dev": true,
2986
- "license": "MIT",
2987
- "engines": {
2988
- "node": ">=0.8.19"
2989
- }
2990
- },
2991
- "node_modules/is-extglob": {
2992
- "version": "2.1.1",
2993
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
2994
- "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
2995
- "dev": true,
2996
- "license": "MIT",
2997
- "engines": {
2998
- "node": ">=0.10.0"
2999
- }
3000
- },
3001
- "node_modules/is-glob": {
3002
- "version": "4.0.3",
3003
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
3004
- "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
3005
- "dev": true,
3006
- "license": "MIT",
3007
- "dependencies": {
3008
- "is-extglob": "^2.1.1"
3009
- },
3010
- "engines": {
3011
- "node": ">=0.10.0"
3012
- }
3013
- },
3014
- "node_modules/is-number": {
3015
- "version": "7.0.0",
3016
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
3017
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
3018
- "dev": true,
3019
- "license": "MIT",
3020
- "optional": true,
3021
- "engines": {
3022
- "node": ">=0.12.0"
3023
- }
3024
- },
3025
- "node_modules/isexe": {
3026
- "version": "2.0.0",
3027
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
3028
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
3029
- "dev": true,
3030
- "license": "ISC"
3031
- },
3032
- "node_modules/js-tokens": {
3033
- "version": "4.0.0",
3034
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
3035
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
3036
- "dev": true,
3037
- "license": "MIT"
3038
- },
3039
- "node_modules/js-yaml": {
3040
- "version": "4.1.1",
3041
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
3042
- "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
3043
- "dev": true,
3044
- "license": "MIT",
3045
- "dependencies": {
3046
- "argparse": "^2.0.1"
3047
- },
3048
- "bin": {
3049
- "js-yaml": "bin/js-yaml.js"
3050
- }
3051
- },
3052
- "node_modules/jsesc": {
3053
- "version": "3.1.0",
3054
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
3055
- "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
3056
- "dev": true,
3057
- "license": "MIT",
3058
- "bin": {
3059
- "jsesc": "bin/jsesc"
3060
- },
3061
- "engines": {
3062
- "node": ">=6"
3063
- }
3064
- },
3065
- "node_modules/json-buffer": {
3066
- "version": "3.0.1",
3067
- "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
3068
- "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
3069
- "dev": true,
3070
- "license": "MIT"
3071
- },
3072
- "node_modules/json-schema-traverse": {
3073
- "version": "0.4.1",
3074
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
3075
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
3076
- "dev": true,
3077
- "license": "MIT"
3078
- },
3079
- "node_modules/json-stable-stringify-without-jsonify": {
3080
- "version": "1.0.1",
3081
- "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
3082
- "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
3083
- "dev": true,
3084
- "license": "MIT"
3085
- },
3086
- "node_modules/json5": {
3087
- "version": "2.2.3",
3088
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
3089
- "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
3090
- "dev": true,
3091
- "license": "MIT",
3092
- "bin": {
3093
- "json5": "lib/cli.js"
3094
- },
3095
- "engines": {
3096
- "node": ">=6"
3097
- }
3098
- },
3099
- "node_modules/keyv": {
3100
- "version": "4.5.4",
3101
- "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
3102
- "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
3103
- "dev": true,
3104
- "license": "MIT",
3105
- "dependencies": {
3106
- "json-buffer": "3.0.1"
3107
- }
3108
- },
3109
- "node_modules/levn": {
3110
- "version": "0.4.1",
3111
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
3112
- "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
3113
- "dev": true,
3114
- "license": "MIT",
3115
- "dependencies": {
3116
- "prelude-ls": "^1.2.1",
3117
- "type-check": "~0.4.0"
3118
- },
3119
- "engines": {
3120
- "node": ">= 0.8.0"
3121
- }
3122
- },
3123
- "node_modules/lil-gui": {
3124
- "version": "0.21.0",
3125
- "resolved": "https://registry.npmjs.org/lil-gui/-/lil-gui-0.21.0.tgz",
3126
- "integrity": "sha512-tpvxN7v1GvE/Tv+GRopfOp0W7fVEjF4PltkuX8vOCIfim22rD1ztvfkoEMcv9lzQeuNUSeIrUmUjBwmlW/oUew==",
3127
- "license": "MIT"
3128
- },
3129
- "node_modules/locate-path": {
3130
- "version": "6.0.0",
3131
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
3132
- "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
3133
- "dev": true,
3134
- "license": "MIT",
3135
- "dependencies": {
3136
- "p-locate": "^5.0.0"
3137
- },
3138
- "engines": {
3139
- "node": ">=10"
3140
- },
3141
- "funding": {
3142
- "url": "https://github.com/sponsors/sindresorhus"
3143
- }
3144
- },
3145
- "node_modules/lodash.merge": {
3146
- "version": "4.6.2",
3147
- "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
3148
- "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
3149
- "dev": true,
3150
- "license": "MIT"
3151
- },
3152
- "node_modules/lru-cache": {
3153
- "version": "5.1.1",
3154
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
3155
- "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
3156
- "dev": true,
3157
- "license": "ISC",
3158
- "dependencies": {
3159
- "yallist": "^3.0.2"
3160
- }
3161
- },
3162
- "node_modules/meshoptimizer": {
3163
- "version": "0.22.0",
3164
- "resolved": "https://registry.npmjs.org/meshoptimizer/-/meshoptimizer-0.22.0.tgz",
3165
- "integrity": "sha512-IebiK79sqIy+E4EgOr+CAw+Ke8hAspXKzBd0JdgEmPHiAwmvEj2S4h1rfvo+o/BnfEYd/jAOg5IeeIjzlzSnDg==",
3166
- "dev": true,
3167
- "license": "MIT"
3168
- },
3169
- "node_modules/micromatch": {
3170
- "version": "4.0.8",
3171
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
3172
- "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
3173
- "dev": true,
3174
- "license": "MIT",
3175
- "optional": true,
3176
- "dependencies": {
3177
- "braces": "^3.0.3",
3178
- "picomatch": "^2.3.1"
3179
- },
3180
- "engines": {
3181
- "node": ">=8.6"
3182
- }
3183
- },
3184
- "node_modules/micromatch/node_modules/picomatch": {
3185
- "version": "2.3.1",
3186
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
3187
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
3188
- "dev": true,
3189
- "license": "MIT",
3190
- "optional": true,
3191
- "engines": {
3192
- "node": ">=8.6"
3193
- },
3194
- "funding": {
3195
- "url": "https://github.com/sponsors/jonschlinkert"
3196
- }
3197
- },
3198
- "node_modules/minimatch": {
3199
- "version": "3.1.2",
3200
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
3201
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
3202
- "dev": true,
3203
- "license": "ISC",
3204
- "dependencies": {
3205
- "brace-expansion": "^1.1.7"
3206
- },
3207
- "engines": {
3208
- "node": "*"
3209
- }
3210
- },
3211
- "node_modules/ms": {
3212
- "version": "2.1.3",
3213
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
3214
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
3215
- "dev": true,
3216
- "license": "MIT"
3217
- },
3218
- "node_modules/nanoid": {
3219
- "version": "3.3.11",
3220
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
3221
- "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
3222
- "dev": true,
3223
- "funding": [
3224
- {
3225
- "type": "github",
3226
- "url": "https://github.com/sponsors/ai"
3227
- }
3228
- ],
3229
- "license": "MIT",
3230
- "bin": {
3231
- "nanoid": "bin/nanoid.cjs"
3232
- },
3233
- "engines": {
3234
- "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
3235
- }
3236
- },
3237
- "node_modules/natural-compare": {
3238
- "version": "1.4.0",
3239
- "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
3240
- "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
3241
- "dev": true,
3242
- "license": "MIT"
3243
- },
3244
- "node_modules/node-addon-api": {
3245
- "version": "7.1.1",
3246
- "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz",
3247
- "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
3248
- "dev": true,
3249
- "license": "MIT",
3250
- "optional": true
3251
- },
3252
- "node_modules/node-releases": {
3253
- "version": "2.0.27",
3254
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
3255
- "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
3256
- "dev": true,
3257
- "license": "MIT"
3258
- },
3259
- "node_modules/optionator": {
3260
- "version": "0.9.4",
3261
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
3262
- "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
3263
- "dev": true,
3264
- "license": "MIT",
3265
- "dependencies": {
3266
- "deep-is": "^0.1.3",
3267
- "fast-levenshtein": "^2.0.6",
3268
- "levn": "^0.4.1",
3269
- "prelude-ls": "^1.2.1",
3270
- "type-check": "^0.4.0",
3271
- "word-wrap": "^1.2.5"
3272
- },
3273
- "engines": {
3274
- "node": ">= 0.8.0"
3275
- }
3276
- },
3277
- "node_modules/p-limit": {
3278
- "version": "3.1.0",
3279
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
3280
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
3281
- "dev": true,
3282
- "license": "MIT",
3283
- "dependencies": {
3284
- "yocto-queue": "^0.1.0"
3285
- },
3286
- "engines": {
3287
- "node": ">=10"
3288
- },
3289
- "funding": {
3290
- "url": "https://github.com/sponsors/sindresorhus"
3291
- }
3292
- },
3293
- "node_modules/p-locate": {
3294
- "version": "5.0.0",
3295
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
3296
- "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
3297
- "dev": true,
3298
- "license": "MIT",
3299
- "dependencies": {
3300
- "p-limit": "^3.0.2"
3301
- },
3302
- "engines": {
3303
- "node": ">=10"
3304
- },
3305
- "funding": {
3306
- "url": "https://github.com/sponsors/sindresorhus"
3307
- }
3308
- },
3309
- "node_modules/parent-module": {
3310
- "version": "1.0.1",
3311
- "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
3312
- "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
3313
- "dev": true,
3314
- "license": "MIT",
3315
- "dependencies": {
3316
- "callsites": "^3.0.0"
3317
- },
3318
- "engines": {
3319
- "node": ">=6"
3320
- }
3321
- },
3322
- "node_modules/path-exists": {
3323
- "version": "4.0.0",
3324
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
3325
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
3326
- "dev": true,
3327
- "license": "MIT",
3328
- "engines": {
3329
- "node": ">=8"
3330
- }
3331
- },
3332
- "node_modules/path-key": {
3333
- "version": "3.1.1",
3334
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
3335
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
3336
- "dev": true,
3337
- "license": "MIT",
3338
- "engines": {
3339
- "node": ">=8"
3340
- }
3341
- },
3342
- "node_modules/picocolors": {
3343
- "version": "1.1.1",
3344
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
3345
- "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
3346
- "dev": true,
3347
- "license": "ISC"
3348
- },
3349
- "node_modules/picomatch": {
3350
- "version": "4.0.3",
3351
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
3352
- "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
3353
- "dev": true,
3354
- "license": "MIT",
3355
- "engines": {
3356
- "node": ">=12"
3357
- },
3358
- "funding": {
3359
- "url": "https://github.com/sponsors/jonschlinkert"
3360
- }
3361
- },
3362
- "node_modules/postcss": {
3363
- "version": "8.5.6",
3364
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
3365
- "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
3366
- "dev": true,
3367
- "funding": [
3368
- {
3369
- "type": "opencollective",
3370
- "url": "https://opencollective.com/postcss/"
3371
- },
3372
- {
3373
- "type": "tidelift",
3374
- "url": "https://tidelift.com/funding/github/npm/postcss"
3375
- },
3376
- {
3377
- "type": "github",
3378
- "url": "https://github.com/sponsors/ai"
3379
- }
3380
- ],
3381
- "license": "MIT",
3382
- "dependencies": {
3383
- "nanoid": "^3.3.11",
3384
- "picocolors": "^1.1.1",
3385
- "source-map-js": "^1.2.1"
3386
- },
3387
- "engines": {
3388
- "node": "^10 || ^12 || >=14"
3389
- }
3390
- },
3391
- "node_modules/prelude-ls": {
3392
- "version": "1.2.1",
3393
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
3394
- "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
3395
- "dev": true,
3396
- "license": "MIT",
3397
- "engines": {
3398
- "node": ">= 0.8.0"
3399
- }
3400
- },
3401
- "node_modules/prettier": {
3402
- "version": "3.7.4",
3403
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.7.4.tgz",
3404
- "integrity": "sha512-v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA==",
3405
- "dev": true,
3406
- "license": "MIT",
3407
- "bin": {
3408
- "prettier": "bin/prettier.cjs"
3409
- },
3410
- "engines": {
3411
- "node": ">=14"
3412
- },
3413
- "funding": {
3414
- "url": "https://github.com/prettier/prettier?sponsor=1"
3415
- }
3416
- },
3417
- "node_modules/prettier-linter-helpers": {
3418
- "version": "1.0.0",
3419
- "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz",
3420
- "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==",
3421
- "dev": true,
3422
- "license": "MIT",
3423
- "dependencies": {
3424
- "fast-diff": "^1.1.2"
3425
- },
3426
- "engines": {
3427
- "node": ">=6.0.0"
3428
- }
3429
- },
3430
- "node_modules/punycode": {
3431
- "version": "2.3.1",
3432
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
3433
- "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
3434
- "dev": true,
3435
- "license": "MIT",
3436
- "engines": {
3437
- "node": ">=6"
3438
- }
3439
- },
3440
- "node_modules/react": {
3441
- "version": "19.2.3",
3442
- "resolved": "https://registry.npmjs.org/react/-/react-19.2.3.tgz",
3443
- "integrity": "sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==",
3444
- "license": "MIT",
3445
- "engines": {
3446
- "node": ">=0.10.0"
3447
- }
3448
- },
3449
- "node_modules/react-dom": {
3450
- "version": "19.2.3",
3451
- "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.3.tgz",
3452
- "integrity": "sha512-yELu4WmLPw5Mr/lmeEpox5rw3RETacE++JgHqQzd2dg+YbJuat3jH4ingc+WPZhxaoFzdv9y33G+F7Nl5O0GBg==",
3453
- "license": "MIT",
3454
- "dependencies": {
3455
- "scheduler": "^0.27.0"
3456
- },
3457
- "peerDependencies": {
3458
- "react": "^19.2.3"
3459
- }
3460
- },
3461
- "node_modules/react-refresh": {
3462
- "version": "0.18.0",
3463
- "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.18.0.tgz",
3464
- "integrity": "sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==",
3465
- "dev": true,
3466
- "license": "MIT",
3467
- "engines": {
3468
- "node": ">=0.10.0"
3469
- }
3470
- },
3471
- "node_modules/readdirp": {
3472
- "version": "4.1.2",
3473
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
3474
- "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
3475
- "dev": true,
3476
- "license": "MIT",
3477
- "optional": true,
3478
- "engines": {
3479
- "node": ">= 14.18.0"
3480
- },
3481
- "funding": {
3482
- "type": "individual",
3483
- "url": "https://paulmillr.com/funding/"
3484
- }
3485
- },
3486
- "node_modules/require-from-string": {
3487
- "version": "2.0.2",
3488
- "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
3489
- "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
3490
- "dev": true,
3491
- "license": "MIT",
3492
- "engines": {
3493
- "node": ">=0.10.0"
3494
- }
3495
- },
3496
- "node_modules/resolve-from": {
3497
- "version": "4.0.0",
3498
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
3499
- "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
3500
- "dev": true,
3501
- "license": "MIT",
3502
- "engines": {
3503
- "node": ">=4"
3504
- }
3505
- },
3506
- "node_modules/rollup": {
3507
- "version": "4.53.3",
3508
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.53.3.tgz",
3509
- "integrity": "sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==",
3510
- "dev": true,
3511
- "license": "MIT",
3512
- "dependencies": {
3513
- "@types/estree": "1.0.8"
3514
- },
3515
- "bin": {
3516
- "rollup": "dist/bin/rollup"
3517
- },
3518
- "engines": {
3519
- "node": ">=18.0.0",
3520
- "npm": ">=8.0.0"
3521
- },
3522
- "optionalDependencies": {
3523
- "@rollup/rollup-android-arm-eabi": "4.53.3",
3524
- "@rollup/rollup-android-arm64": "4.53.3",
3525
- "@rollup/rollup-darwin-arm64": "4.53.3",
3526
- "@rollup/rollup-darwin-x64": "4.53.3",
3527
- "@rollup/rollup-freebsd-arm64": "4.53.3",
3528
- "@rollup/rollup-freebsd-x64": "4.53.3",
3529
- "@rollup/rollup-linux-arm-gnueabihf": "4.53.3",
3530
- "@rollup/rollup-linux-arm-musleabihf": "4.53.3",
3531
- "@rollup/rollup-linux-arm64-gnu": "4.53.3",
3532
- "@rollup/rollup-linux-arm64-musl": "4.53.3",
3533
- "@rollup/rollup-linux-loong64-gnu": "4.53.3",
3534
- "@rollup/rollup-linux-ppc64-gnu": "4.53.3",
3535
- "@rollup/rollup-linux-riscv64-gnu": "4.53.3",
3536
- "@rollup/rollup-linux-riscv64-musl": "4.53.3",
3537
- "@rollup/rollup-linux-s390x-gnu": "4.53.3",
3538
- "@rollup/rollup-linux-x64-gnu": "4.53.3",
3539
- "@rollup/rollup-linux-x64-musl": "4.53.3",
3540
- "@rollup/rollup-openharmony-arm64": "4.53.3",
3541
- "@rollup/rollup-win32-arm64-msvc": "4.53.3",
3542
- "@rollup/rollup-win32-ia32-msvc": "4.53.3",
3543
- "@rollup/rollup-win32-x64-gnu": "4.53.3",
3544
- "@rollup/rollup-win32-x64-msvc": "4.53.3",
3545
- "fsevents": "~2.3.2"
3546
- }
3547
- },
3548
- "node_modules/rxjs": {
3549
- "version": "7.8.2",
3550
- "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz",
3551
- "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==",
3552
- "dev": true,
3553
- "license": "Apache-2.0",
3554
- "dependencies": {
3555
- "tslib": "^2.1.0"
3556
- }
3557
- },
3558
- "node_modules/sass": {
3559
- "version": "1.97.1",
3560
- "resolved": "https://registry.npmjs.org/sass/-/sass-1.97.1.tgz",
3561
- "integrity": "sha512-uf6HoO8fy6ClsrShvMgaKUn14f2EHQLQRtpsZZLeU/Mv0Q1K5P0+x2uvH6Cub39TVVbWNSrraUhDAoFph6vh0A==",
3562
- "dev": true,
3563
- "license": "MIT",
3564
- "optional": true,
3565
- "dependencies": {
3566
- "chokidar": "^4.0.0",
3567
- "immutable": "^5.0.2",
3568
- "source-map-js": ">=0.6.2 <2.0.0"
3569
- },
3570
- "bin": {
3571
- "sass": "sass.js"
3572
- },
3573
- "engines": {
3574
- "node": ">=14.0.0"
3575
- },
3576
- "optionalDependencies": {
3577
- "@parcel/watcher": "^2.4.1"
3578
- }
3579
- },
3580
- "node_modules/sass-embedded": {
3581
- "version": "1.97.1",
3582
- "resolved": "https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.97.1.tgz",
3583
- "integrity": "sha512-wH3CbOThHYGX0bUyqFf7laLKyhVWIFc2lHynitkqMIUCtX2ixH9mQh0bN7+hkUu5BFt/SXvEMjFbkEbBMpQiSQ==",
3584
- "dev": true,
3585
- "license": "MIT",
3586
- "dependencies": {
3587
- "@bufbuild/protobuf": "^2.5.0",
3588
- "buffer-builder": "^0.2.0",
3589
- "colorjs.io": "^0.5.0",
3590
- "immutable": "^5.0.2",
3591
- "rxjs": "^7.4.0",
3592
- "supports-color": "^8.1.1",
3593
- "sync-child-process": "^1.0.2",
3594
- "varint": "^6.0.0"
3595
- },
3596
- "bin": {
3597
- "sass": "dist/bin/sass.js"
3598
- },
3599
- "engines": {
3600
- "node": ">=16.0.0"
3601
- },
3602
- "optionalDependencies": {
3603
- "sass-embedded-all-unknown": "1.97.1",
3604
- "sass-embedded-android-arm": "1.97.1",
3605
- "sass-embedded-android-arm64": "1.97.1",
3606
- "sass-embedded-android-riscv64": "1.97.1",
3607
- "sass-embedded-android-x64": "1.97.1",
3608
- "sass-embedded-darwin-arm64": "1.97.1",
3609
- "sass-embedded-darwin-x64": "1.97.1",
3610
- "sass-embedded-linux-arm": "1.97.1",
3611
- "sass-embedded-linux-arm64": "1.97.1",
3612
- "sass-embedded-linux-musl-arm": "1.97.1",
3613
- "sass-embedded-linux-musl-arm64": "1.97.1",
3614
- "sass-embedded-linux-musl-riscv64": "1.97.1",
3615
- "sass-embedded-linux-musl-x64": "1.97.1",
3616
- "sass-embedded-linux-riscv64": "1.97.1",
3617
- "sass-embedded-linux-x64": "1.97.1",
3618
- "sass-embedded-unknown-all": "1.97.1",
3619
- "sass-embedded-win32-arm64": "1.97.1",
3620
- "sass-embedded-win32-x64": "1.97.1"
3621
- }
3622
- },
3623
- "node_modules/sass-embedded-all-unknown": {
3624
- "version": "1.97.1",
3625
- "resolved": "https://registry.npmjs.org/sass-embedded-all-unknown/-/sass-embedded-all-unknown-1.97.1.tgz",
3626
- "integrity": "sha512-0au5gUNibfob7W/g+ycBx74O22CL8vwHiZdEDY6J0uzMkHPiSJk//h0iRf5AUnMArFHJjFd3urIiQIaoRKYa1Q==",
3627
- "cpu": [
3628
- "!arm",
3629
- "!arm64",
3630
- "!riscv64",
3631
- "!x64"
3632
- ],
3633
- "dev": true,
3634
- "license": "MIT",
3635
- "optional": true,
3636
- "dependencies": {
3637
- "sass": "1.97.1"
3638
- }
3639
- },
3640
- "node_modules/sass-embedded-android-arm": {
3641
- "version": "1.97.1",
3642
- "resolved": "https://registry.npmjs.org/sass-embedded-android-arm/-/sass-embedded-android-arm-1.97.1.tgz",
3643
- "integrity": "sha512-B5dlv4utJ+yC8ZpBeWTHwSZPVKRlqA8pcaD0FAzeNm/DelIFgQUQtt0UwgYoAI6wDIiie5uSVpMK9l2DaCbiBQ==",
3644
- "cpu": [
3645
- "arm"
3646
- ],
3647
- "dev": true,
3648
- "license": "MIT",
3649
- "optional": true,
3650
- "os": [
3651
- "android"
3652
- ],
3653
- "engines": {
3654
- "node": ">=14.0.0"
3655
- }
3656
- },
3657
- "node_modules/sass-embedded-android-arm64": {
3658
- "version": "1.97.1",
3659
- "resolved": "https://registry.npmjs.org/sass-embedded-android-arm64/-/sass-embedded-android-arm64-1.97.1.tgz",
3660
- "integrity": "sha512-h62DmOiS2Jn87s8+8GhJcMerJnTKa1IsIa9iIKjLiqbAvBDKCGUs027RugZkM+Zx7I+vhPq86PUXBYZ9EkRxdw==",
3661
- "cpu": [
3662
- "arm64"
3663
- ],
3664
- "dev": true,
3665
- "license": "MIT",
3666
- "optional": true,
3667
- "os": [
3668
- "android"
3669
- ],
3670
- "engines": {
3671
- "node": ">=14.0.0"
3672
- }
3673
- },
3674
- "node_modules/sass-embedded-android-riscv64": {
3675
- "version": "1.97.1",
3676
- "resolved": "https://registry.npmjs.org/sass-embedded-android-riscv64/-/sass-embedded-android-riscv64-1.97.1.tgz",
3677
- "integrity": "sha512-tGup88vgaXPnUHEgDMujrt5rfYadvkiVjRb/45FJTx2hQFoGVbmUXz5XqUFjIIbEjQ3kAJqp86A2jy11s43UiQ==",
3678
- "cpu": [
3679
- "riscv64"
3680
- ],
3681
- "dev": true,
3682
- "license": "MIT",
3683
- "optional": true,
3684
- "os": [
3685
- "android"
3686
- ],
3687
- "engines": {
3688
- "node": ">=14.0.0"
3689
- }
3690
- },
3691
- "node_modules/sass-embedded-android-x64": {
3692
- "version": "1.97.1",
3693
- "resolved": "https://registry.npmjs.org/sass-embedded-android-x64/-/sass-embedded-android-x64-1.97.1.tgz",
3694
- "integrity": "sha512-CAzKjjzu90LZduye2O9+UGX1oScMyF5/RVOa5CxACKALeIS+3XL3LVdV47kwKPoBv5B1aFUvGLscY0CR7jBAbg==",
3695
- "cpu": [
3696
- "x64"
3697
- ],
3698
- "dev": true,
3699
- "license": "MIT",
3700
- "optional": true,
3701
- "os": [
3702
- "android"
3703
- ],
3704
- "engines": {
3705
- "node": ">=14.0.0"
3706
- }
3707
- },
3708
- "node_modules/sass-embedded-darwin-arm64": {
3709
- "version": "1.97.1",
3710
- "resolved": "https://registry.npmjs.org/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.97.1.tgz",
3711
- "integrity": "sha512-tyDzspzh5PbqdAFGtVKUXuf0up6Lff3c1U8J7+4Y7jW6AWRBnq95vTzIIxfnNifGCTI2fW5e7GAZpYygKpNwcw==",
3712
- "cpu": [
3713
- "arm64"
3714
- ],
3715
- "dev": true,
3716
- "license": "MIT",
3717
- "optional": true,
3718
- "os": [
3719
- "darwin"
3720
- ],
3721
- "engines": {
3722
- "node": ">=14.0.0"
3723
- }
3724
- },
3725
- "node_modules/sass-embedded-darwin-x64": {
3726
- "version": "1.97.1",
3727
- "resolved": "https://registry.npmjs.org/sass-embedded-darwin-x64/-/sass-embedded-darwin-x64-1.97.1.tgz",
3728
- "integrity": "sha512-FMrRuSPI2ICt2M2SYaLbiG4yxn86D6ae+XtrRdrrBMhWprAcB7Iyu67bgRzZkipMZNIKKeTR7EUvJHgZzi5ixQ==",
3729
- "cpu": [
3730
- "x64"
3731
- ],
3732
- "dev": true,
3733
- "license": "MIT",
3734
- "optional": true,
3735
- "os": [
3736
- "darwin"
3737
- ],
3738
- "engines": {
3739
- "node": ">=14.0.0"
3740
- }
3741
- },
3742
- "node_modules/sass-embedded-linux-arm": {
3743
- "version": "1.97.1",
3744
- "resolved": "https://registry.npmjs.org/sass-embedded-linux-arm/-/sass-embedded-linux-arm-1.97.1.tgz",
3745
- "integrity": "sha512-48VxaTUApLyx1NXFdZhKqI/7FYLmz8Ju3Ki2V/p+mhn5raHgAiYeFgn8O1WGxTOh+hBb9y3FdSR5a8MNTbmKMQ==",
3746
- "cpu": [
3747
- "arm"
3748
- ],
3749
- "dev": true,
3750
- "license": "MIT",
3751
- "optional": true,
3752
- "os": [
3753
- "linux"
3754
- ],
3755
- "engines": {
3756
- "node": ">=14.0.0"
3757
- }
3758
- },
3759
- "node_modules/sass-embedded-linux-arm64": {
3760
- "version": "1.97.1",
3761
- "resolved": "https://registry.npmjs.org/sass-embedded-linux-arm64/-/sass-embedded-linux-arm64-1.97.1.tgz",
3762
- "integrity": "sha512-im80gfDWRivw9Su3r3YaZmJaCATcJgu3CsCSLodPk1b1R2+X/E12zEQayvrl05EGT9PDwTtuiqKgS4ND4xjwVg==",
3763
- "cpu": [
3764
- "arm64"
3765
- ],
3766
- "dev": true,
3767
- "license": "MIT",
3768
- "optional": true,
3769
- "os": [
3770
- "linux"
3771
- ],
3772
- "engines": {
3773
- "node": ">=14.0.0"
3774
- }
3775
- },
3776
- "node_modules/sass-embedded-linux-musl-arm": {
3777
- "version": "1.97.1",
3778
- "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-arm/-/sass-embedded-linux-musl-arm-1.97.1.tgz",
3779
- "integrity": "sha512-FUFs466t3PVViVOKY/60JgLLtl61Pf7OW+g5BeEfuqVcSvYUECVHeiYHtX1fT78PEVa0h9tHpM6XpWti+7WYFA==",
3780
- "cpu": [
3781
- "arm"
3782
- ],
3783
- "dev": true,
3784
- "license": "MIT",
3785
- "optional": true,
3786
- "os": [
3787
- "linux"
3788
- ],
3789
- "engines": {
3790
- "node": ">=14.0.0"
3791
- }
3792
- },
3793
- "node_modules/sass-embedded-linux-musl-arm64": {
3794
- "version": "1.97.1",
3795
- "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-arm64/-/sass-embedded-linux-musl-arm64-1.97.1.tgz",
3796
- "integrity": "sha512-kD35WSD9o0279Ptwid3Jnbovo1FYnuG2mayYk9z4ZI4mweXEK6vTu+tlvCE/MdF/zFKSj11qaxaH+uzXe2cO5A==",
3797
- "cpu": [
3798
- "arm64"
3799
- ],
3800
- "dev": true,
3801
- "license": "MIT",
3802
- "optional": true,
3803
- "os": [
3804
- "linux"
3805
- ],
3806
- "engines": {
3807
- "node": ">=14.0.0"
3808
- }
3809
- },
3810
- "node_modules/sass-embedded-linux-musl-riscv64": {
3811
- "version": "1.97.1",
3812
- "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-riscv64/-/sass-embedded-linux-musl-riscv64-1.97.1.tgz",
3813
- "integrity": "sha512-ZgpYps5YHuhA2+KiLkPukRbS5298QObgUhPll/gm5i0LOZleKCwrFELpVPcbhsSBuxqji2uaag5OL+n3JRBVVg==",
3814
- "cpu": [
3815
- "riscv64"
3816
- ],
3817
- "dev": true,
3818
- "license": "MIT",
3819
- "optional": true,
3820
- "os": [
3821
- "linux"
3822
- ],
3823
- "engines": {
3824
- "node": ">=14.0.0"
3825
- }
3826
- },
3827
- "node_modules/sass-embedded-linux-musl-x64": {
3828
- "version": "1.97.1",
3829
- "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-x64/-/sass-embedded-linux-musl-x64-1.97.1.tgz",
3830
- "integrity": "sha512-wcAigOyyvZ6o1zVypWV7QLZqpOEVnlBqJr9MbpnRIm74qFTSbAEmShoh8yMXBymzuVSmEbThxAwW01/TLf62tA==",
3831
- "cpu": [
3832
- "x64"
3833
- ],
3834
- "dev": true,
3835
- "license": "MIT",
3836
- "optional": true,
3837
- "os": [
3838
- "linux"
3839
- ],
3840
- "engines": {
3841
- "node": ">=14.0.0"
3842
- }
3843
- },
3844
- "node_modules/sass-embedded-linux-riscv64": {
3845
- "version": "1.97.1",
3846
- "resolved": "https://registry.npmjs.org/sass-embedded-linux-riscv64/-/sass-embedded-linux-riscv64-1.97.1.tgz",
3847
- "integrity": "sha512-9j1qE1ZrLMuGb+LUmBzw93Z4TNfqlRkkxjPVZy6u5vIggeSfvGbte7eRoYBNWX6SFew/yBCL90KXIirWFSGrlQ==",
3848
- "cpu": [
3849
- "riscv64"
3850
- ],
3851
- "dev": true,
3852
- "license": "MIT",
3853
- "optional": true,
3854
- "os": [
3855
- "linux"
3856
- ],
3857
- "engines": {
3858
- "node": ">=14.0.0"
3859
- }
3860
- },
3861
- "node_modules/sass-embedded-linux-x64": {
3862
- "version": "1.97.1",
3863
- "resolved": "https://registry.npmjs.org/sass-embedded-linux-x64/-/sass-embedded-linux-x64-1.97.1.tgz",
3864
- "integrity": "sha512-7nrLFYMH/UgvEgXR5JxQJ6y9N4IJmnFnYoDxN0nw0jUp+CQWQL4EJ4RqAKTGelneueRbccvt2sEyPK+X0KJ9Jg==",
3865
- "cpu": [
3866
- "x64"
3867
- ],
3868
- "dev": true,
3869
- "license": "MIT",
3870
- "optional": true,
3871
- "os": [
3872
- "linux"
3873
- ],
3874
- "engines": {
3875
- "node": ">=14.0.0"
3876
- }
3877
- },
3878
- "node_modules/sass-embedded-unknown-all": {
3879
- "version": "1.97.1",
3880
- "resolved": "https://registry.npmjs.org/sass-embedded-unknown-all/-/sass-embedded-unknown-all-1.97.1.tgz",
3881
- "integrity": "sha512-oPSeKc7vS2dx3ZJHiUhHKcyqNq0GWzAiR8zMVpPd/kVMl5ZfVyw+5HTCxxWDBGkX02lNpou27JkeBPCaneYGAQ==",
3882
- "dev": true,
3883
- "license": "MIT",
3884
- "optional": true,
3885
- "os": [
3886
- "!android",
3887
- "!darwin",
3888
- "!linux",
3889
- "!win32"
3890
- ],
3891
- "dependencies": {
3892
- "sass": "1.97.1"
3893
- }
3894
- },
3895
- "node_modules/sass-embedded-win32-arm64": {
3896
- "version": "1.97.1",
3897
- "resolved": "https://registry.npmjs.org/sass-embedded-win32-arm64/-/sass-embedded-win32-arm64-1.97.1.tgz",
3898
- "integrity": "sha512-L5j7J6CbZgHGwcfVedMVpM3z5MYeighcyZE8GF2DVmjWzZI3JtPKNY11wNTD/P9o1Uql10YPOKhGH0iWIXOT7Q==",
3899
- "cpu": [
3900
- "arm64"
3901
- ],
3902
- "dev": true,
3903
- "license": "MIT",
3904
- "optional": true,
3905
- "os": [
3906
- "win32"
3907
- ],
3908
- "engines": {
3909
- "node": ">=14.0.0"
3910
- }
3911
- },
3912
- "node_modules/sass-embedded-win32-x64": {
3913
- "version": "1.97.1",
3914
- "resolved": "https://registry.npmjs.org/sass-embedded-win32-x64/-/sass-embedded-win32-x64-1.97.1.tgz",
3915
- "integrity": "sha512-rfaZAKXU8cW3E7gvdafyD6YtgbEcsDeT99OEiHXRT0UGFuXT8qCOjpAwIKaOA3XXr2d8S42xx6cXcaZ1a+1fgw==",
3916
- "cpu": [
3917
- "x64"
3918
- ],
3919
- "dev": true,
3920
- "license": "MIT",
3921
- "optional": true,
3922
- "os": [
3923
- "win32"
3924
- ],
3925
- "engines": {
3926
- "node": ">=14.0.0"
3927
- }
3928
- },
3929
- "node_modules/sass-embedded/node_modules/supports-color": {
3930
- "version": "8.1.1",
3931
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
3932
- "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
3933
- "dev": true,
3934
- "license": "MIT",
3935
- "dependencies": {
3936
- "has-flag": "^4.0.0"
3937
- },
3938
- "engines": {
3939
- "node": ">=10"
3940
- },
3941
- "funding": {
3942
- "url": "https://github.com/chalk/supports-color?sponsor=1"
3943
- }
3944
- },
3945
- "node_modules/scheduler": {
3946
- "version": "0.27.0",
3947
- "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
3948
- "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
3949
- "license": "MIT"
3950
- },
3951
- "node_modules/semver": {
3952
- "version": "6.3.1",
3953
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
3954
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
3955
- "dev": true,
3956
- "license": "ISC",
3957
- "bin": {
3958
- "semver": "bin/semver.js"
3959
- }
3960
- },
3961
- "node_modules/shebang-command": {
3962
- "version": "2.0.0",
3963
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
3964
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
3965
- "dev": true,
3966
- "license": "MIT",
3967
- "dependencies": {
3968
- "shebang-regex": "^3.0.0"
3969
- },
3970
- "engines": {
3971
- "node": ">=8"
3972
- }
3973
- },
3974
- "node_modules/shebang-regex": {
3975
- "version": "3.0.0",
3976
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
3977
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
3978
- "dev": true,
3979
- "license": "MIT",
3980
- "engines": {
3981
- "node": ">=8"
3982
- }
3983
- },
3984
- "node_modules/source-map-js": {
3985
- "version": "1.2.1",
3986
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
3987
- "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
3988
- "dev": true,
3989
- "license": "BSD-3-Clause",
3990
- "engines": {
3991
- "node": ">=0.10.0"
3992
- }
3993
- },
3994
- "node_modules/strip-json-comments": {
3995
- "version": "3.1.1",
3996
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
3997
- "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
3998
- "dev": true,
3999
- "license": "MIT",
4000
- "engines": {
4001
- "node": ">=8"
4002
- },
4003
- "funding": {
4004
- "url": "https://github.com/sponsors/sindresorhus"
4005
- }
4006
- },
4007
- "node_modules/supports-color": {
4008
- "version": "7.2.0",
4009
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
4010
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
4011
- "dev": true,
4012
- "license": "MIT",
4013
- "dependencies": {
4014
- "has-flag": "^4.0.0"
4015
- },
4016
- "engines": {
4017
- "node": ">=8"
4018
- }
4019
- },
4020
- "node_modules/sync-child-process": {
4021
- "version": "1.0.2",
4022
- "resolved": "https://registry.npmjs.org/sync-child-process/-/sync-child-process-1.0.2.tgz",
4023
- "integrity": "sha512-8lD+t2KrrScJ/7KXCSyfhT3/hRq78rC0wBFqNJXv3mZyn6hW2ypM05JmlSvtqRbeq6jqA94oHbxAr2vYsJ8vDA==",
4024
- "dev": true,
4025
- "license": "MIT",
4026
- "dependencies": {
4027
- "sync-message-port": "^1.0.0"
4028
- },
4029
- "engines": {
4030
- "node": ">=16.0.0"
4031
- }
4032
- },
4033
- "node_modules/sync-message-port": {
4034
- "version": "1.1.3",
4035
- "resolved": "https://registry.npmjs.org/sync-message-port/-/sync-message-port-1.1.3.tgz",
4036
- "integrity": "sha512-GTt8rSKje5FilG+wEdfCkOcLL7LWqpMlr2c3LRuKt/YXxcJ52aGSbGBAdI4L3aaqfrBt6y711El53ItyH1NWzg==",
4037
- "dev": true,
4038
- "license": "MIT",
4039
- "engines": {
4040
- "node": ">=16.0.0"
4041
- }
4042
- },
4043
- "node_modules/synckit": {
4044
- "version": "0.11.11",
4045
- "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.11.11.tgz",
4046
- "integrity": "sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==",
4047
- "dev": true,
4048
- "license": "MIT",
4049
- "dependencies": {
4050
- "@pkgr/core": "^0.2.9"
4051
- },
4052
- "engines": {
4053
- "node": "^14.18.0 || >=16.0.0"
4054
- },
4055
- "funding": {
4056
- "url": "https://opencollective.com/synckit"
4057
- }
4058
- },
4059
- "node_modules/three": {
4060
- "version": "0.182.0",
4061
- "resolved": "https://registry.npmjs.org/three/-/three-0.182.0.tgz",
4062
- "integrity": "sha512-GbHabT+Irv+ihI1/f5kIIsZ+Ef9Sl5A1Y7imvS5RQjWgtTPfPnZ43JmlYI7NtCRDK9zir20lQpfg8/9Yd02OvQ==",
4063
- "license": "MIT"
4064
- },
4065
- "node_modules/three-perf": {
4066
- "version": "1.0.11",
4067
- "resolved": "https://registry.npmjs.org/three-perf/-/three-perf-1.0.11.tgz",
4068
- "integrity": "sha512-OgBpZjwL+csQKGKZjpkH/QHdbGFMxqngMbSEJeSnVNfXDYd6On7WHNv/GhUZH4YxIpNMwMahBWrNnsJvnbSJHQ==",
4069
- "dev": true,
4070
- "license": "MIT",
4071
- "dependencies": {
4072
- "troika-three-text": "^0.52.0",
4073
- "tweakpane": "^3.1.10"
4074
- },
4075
- "peerDependencies": {
4076
- "three": ">=0.170"
4077
- }
4078
- },
4079
- "node_modules/tinyglobby": {
4080
- "version": "0.2.15",
4081
- "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
4082
- "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
4083
- "dev": true,
4084
- "license": "MIT",
4085
- "dependencies": {
4086
- "fdir": "^6.5.0",
4087
- "picomatch": "^4.0.3"
4088
- },
4089
- "engines": {
4090
- "node": ">=12.0.0"
4091
- },
4092
- "funding": {
4093
- "url": "https://github.com/sponsors/SuperchupuDev"
4094
- }
4095
- },
4096
- "node_modules/to-regex-range": {
4097
- "version": "5.0.1",
4098
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
4099
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
4100
- "dev": true,
4101
- "license": "MIT",
4102
- "optional": true,
4103
- "dependencies": {
4104
- "is-number": "^7.0.0"
4105
- },
4106
- "engines": {
4107
- "node": ">=8.0"
4108
- }
4109
- },
4110
- "node_modules/troika-three-text": {
4111
- "version": "0.52.4",
4112
- "resolved": "https://registry.npmjs.org/troika-three-text/-/troika-three-text-0.52.4.tgz",
4113
- "integrity": "sha512-V50EwcYGruV5rUZ9F4aNsrytGdKcXKALjEtQXIOBfhVoZU9VAqZNIoGQ3TMiooVqFAbR1w15T+f+8gkzoFzawg==",
4114
- "dev": true,
4115
- "license": "MIT",
4116
- "dependencies": {
4117
- "bidi-js": "^1.0.2",
4118
- "troika-three-utils": "^0.52.4",
4119
- "troika-worker-utils": "^0.52.0",
4120
- "webgl-sdf-generator": "1.1.1"
4121
- },
4122
- "peerDependencies": {
4123
- "three": ">=0.125.0"
4124
- }
4125
- },
4126
- "node_modules/troika-three-utils": {
4127
- "version": "0.52.4",
4128
- "resolved": "https://registry.npmjs.org/troika-three-utils/-/troika-three-utils-0.52.4.tgz",
4129
- "integrity": "sha512-NORAStSVa/BDiG52Mfudk4j1FG4jC4ILutB3foPnfGbOeIs9+G5vZLa0pnmnaftZUGm4UwSoqEpWdqvC7zms3A==",
4130
- "dev": true,
4131
- "license": "MIT",
4132
- "peerDependencies": {
4133
- "three": ">=0.125.0"
4134
- }
4135
- },
4136
- "node_modules/troika-worker-utils": {
4137
- "version": "0.52.0",
4138
- "resolved": "https://registry.npmjs.org/troika-worker-utils/-/troika-worker-utils-0.52.0.tgz",
4139
- "integrity": "sha512-W1CpvTHykaPH5brv5VHLfQo9D1OYuo0cSBEUQFFT/nBUzM8iD6Lq2/tgG/f1OelbAS1WtaTPQzE5uM49egnngw==",
4140
- "dev": true,
4141
- "license": "MIT"
4142
- },
4143
- "node_modules/ts-api-utils": {
4144
- "version": "2.2.0",
4145
- "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.2.0.tgz",
4146
- "integrity": "sha512-L6f5oQRAoLU1RwXz0Ab9mxsE7LtxeVB6AIR1lpkZMsOyg/JXeaxBaXa/FVCBZyNr9S9I4wkHrlZTklX+im+WMw==",
4147
- "dev": true,
4148
- "license": "MIT",
4149
- "engines": {
4150
- "node": ">=18.12"
4151
- },
4152
- "peerDependencies": {
4153
- "typescript": ">=4.8.4"
4154
- }
4155
- },
4156
- "node_modules/tslib": {
4157
- "version": "2.8.1",
4158
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
4159
- "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
4160
- "dev": true,
4161
- "license": "0BSD"
4162
- },
4163
- "node_modules/tweakpane": {
4164
- "version": "3.1.10",
4165
- "resolved": "https://registry.npmjs.org/tweakpane/-/tweakpane-3.1.10.tgz",
4166
- "integrity": "sha512-rqwnl/pUa7+inhI2E9ayGTqqP0EPOOn/wVvSWjZsRbZUItzNShny7pzwL3hVlaN4m9t/aZhsP0aFQ9U5VVR2VQ==",
4167
- "dev": true,
4168
- "license": "MIT",
4169
- "funding": {
4170
- "url": "https://github.com/sponsors/cocopon"
4171
- }
4172
- },
4173
- "node_modules/type-check": {
4174
- "version": "0.4.0",
4175
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
4176
- "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
4177
- "dev": true,
4178
- "license": "MIT",
4179
- "dependencies": {
4180
- "prelude-ls": "^1.2.1"
4181
- },
4182
- "engines": {
4183
- "node": ">= 0.8.0"
4184
- }
4185
- },
4186
- "node_modules/typescript": {
4187
- "version": "5.9.3",
4188
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
4189
- "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
4190
- "dev": true,
4191
- "license": "Apache-2.0",
4192
- "bin": {
4193
- "tsc": "bin/tsc",
4194
- "tsserver": "bin/tsserver"
4195
- },
4196
- "engines": {
4197
- "node": ">=14.17"
4198
- }
4199
- },
4200
- "node_modules/typescript-eslint": {
4201
- "version": "8.50.1",
4202
- "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.50.1.tgz",
4203
- "integrity": "sha512-ytTHO+SoYSbhAH9CrYnMhiLx8To6PSSvqnvXyPUgPETCvB6eBKmTI9w6XMPS3HsBRGkwTVBX+urA8dYQx6bHfQ==",
4204
- "dev": true,
4205
- "license": "MIT",
4206
- "dependencies": {
4207
- "@typescript-eslint/eslint-plugin": "8.50.1",
4208
- "@typescript-eslint/parser": "8.50.1",
4209
- "@typescript-eslint/typescript-estree": "8.50.1",
4210
- "@typescript-eslint/utils": "8.50.1"
4211
- },
4212
- "engines": {
4213
- "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
4214
- },
4215
- "funding": {
4216
- "type": "opencollective",
4217
- "url": "https://opencollective.com/typescript-eslint"
4218
- },
4219
- "peerDependencies": {
4220
- "eslint": "^8.57.0 || ^9.0.0",
4221
- "typescript": ">=4.8.4 <6.0.0"
4222
- }
4223
- },
4224
- "node_modules/undici-types": {
4225
- "version": "7.16.0",
4226
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz",
4227
- "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==",
4228
- "dev": true,
4229
- "license": "MIT"
4230
- },
4231
- "node_modules/update-browserslist-db": {
4232
- "version": "1.2.2",
4233
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.2.tgz",
4234
- "integrity": "sha512-E85pfNzMQ9jpKkA7+TJAi4TJN+tBCuWh5rUcS/sv6cFi+1q9LYDwDI5dpUL0u/73EElyQ8d3TEaeW4sPedBqYA==",
4235
- "dev": true,
4236
- "funding": [
4237
- {
4238
- "type": "opencollective",
4239
- "url": "https://opencollective.com/browserslist"
4240
- },
4241
- {
4242
- "type": "tidelift",
4243
- "url": "https://tidelift.com/funding/github/npm/browserslist"
4244
- },
4245
- {
4246
- "type": "github",
4247
- "url": "https://github.com/sponsors/ai"
4248
- }
4249
- ],
4250
- "license": "MIT",
4251
- "dependencies": {
4252
- "escalade": "^3.2.0",
4253
- "picocolors": "^1.1.1"
4254
- },
4255
- "bin": {
4256
- "update-browserslist-db": "cli.js"
4257
- },
4258
- "peerDependencies": {
4259
- "browserslist": ">= 4.21.0"
4260
- }
4261
- },
4262
- "node_modules/uri-js": {
4263
- "version": "4.4.1",
4264
- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
4265
- "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
4266
- "dev": true,
4267
- "license": "BSD-2-Clause",
4268
- "dependencies": {
4269
- "punycode": "^2.1.0"
4270
- }
4271
- },
4272
- "node_modules/varint": {
4273
- "version": "6.0.0",
4274
- "resolved": "https://registry.npmjs.org/varint/-/varint-6.0.0.tgz",
4275
- "integrity": "sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==",
4276
- "dev": true,
4277
- "license": "MIT"
4278
- },
4279
- "node_modules/vite": {
4280
- "version": "7.3.0",
4281
- "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.0.tgz",
4282
- "integrity": "sha512-dZwN5L1VlUBewiP6H9s2+B3e3Jg96D0vzN+Ry73sOefebhYr9f94wwkMNN/9ouoU8pV1BqA1d1zGk8928cx0rg==",
4283
- "dev": true,
4284
- "license": "MIT",
4285
- "dependencies": {
4286
- "esbuild": "^0.27.0",
4287
- "fdir": "^6.5.0",
4288
- "picomatch": "^4.0.3",
4289
- "postcss": "^8.5.6",
4290
- "rollup": "^4.43.0",
4291
- "tinyglobby": "^0.2.15"
4292
- },
4293
- "bin": {
4294
- "vite": "bin/vite.js"
4295
- },
4296
- "engines": {
4297
- "node": "^20.19.0 || >=22.12.0"
4298
- },
4299
- "funding": {
4300
- "url": "https://github.com/vitejs/vite?sponsor=1"
4301
- },
4302
- "optionalDependencies": {
4303
- "fsevents": "~2.3.3"
4304
- },
4305
- "peerDependencies": {
4306
- "@types/node": "^20.19.0 || >=22.12.0",
4307
- "jiti": ">=1.21.0",
4308
- "less": "^4.0.0",
4309
- "lightningcss": "^1.21.0",
4310
- "sass": "^1.70.0",
4311
- "sass-embedded": "^1.70.0",
4312
- "stylus": ">=0.54.8",
4313
- "sugarss": "^5.0.0",
4314
- "terser": "^5.16.0",
4315
- "tsx": "^4.8.1",
4316
- "yaml": "^2.4.2"
4317
- },
4318
- "peerDependenciesMeta": {
4319
- "@types/node": {
4320
- "optional": true
4321
- },
4322
- "jiti": {
4323
- "optional": true
4324
- },
4325
- "less": {
4326
- "optional": true
4327
- },
4328
- "lightningcss": {
4329
- "optional": true
4330
- },
4331
- "sass": {
4332
- "optional": true
4333
- },
4334
- "sass-embedded": {
4335
- "optional": true
4336
- },
4337
- "stylus": {
4338
- "optional": true
4339
- },
4340
- "sugarss": {
4341
- "optional": true
4342
- },
4343
- "terser": {
4344
- "optional": true
4345
- },
4346
- "tsx": {
4347
- "optional": true
4348
- },
4349
- "yaml": {
4350
- "optional": true
4351
- }
4352
- }
4353
- },
4354
- "node_modules/vite-plugin-glsl": {
4355
- "version": "1.5.5",
4356
- "resolved": "https://registry.npmjs.org/vite-plugin-glsl/-/vite-plugin-glsl-1.5.5.tgz",
4357
- "integrity": "sha512-6NM2P4JkM+1hNSqMhM4eagX03bmhEoTyrOrk68y3Q6KXfdF73QIuCb6BmRZvwLPgXTCOBM3Zc8gL1WxctYnrUQ==",
4358
- "dev": true,
4359
- "license": "MIT",
4360
- "engines": {
4361
- "node": ">= 20.17.0",
4362
- "npm": ">= 10.8.3"
4363
- },
4364
- "peerDependencies": {
4365
- "@rollup/pluginutils": "^5.x",
4366
- "esbuild": ">= 0.25",
4367
- "vite": ">= 3.x"
4368
- },
4369
- "peerDependenciesMeta": {
4370
- "@rollup/pluginutils": {
4371
- "optional": true
4372
- },
4373
- "esbuild": {
4374
- "optional": true
4375
- }
4376
- }
4377
- },
4378
- "node_modules/webgl-sdf-generator": {
4379
- "version": "1.1.1",
4380
- "resolved": "https://registry.npmjs.org/webgl-sdf-generator/-/webgl-sdf-generator-1.1.1.tgz",
4381
- "integrity": "sha512-9Z0JcMTFxeE+b2x1LJTdnaT8rT8aEp7MVxkNwoycNmJWwPdzoXzMh0BjJSh/AEFP+KPYZUli814h8bJZFIZ2jA==",
4382
- "dev": true,
4383
- "license": "MIT"
4384
- },
4385
- "node_modules/which": {
4386
- "version": "2.0.2",
4387
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
4388
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
4389
- "dev": true,
4390
- "license": "ISC",
4391
- "dependencies": {
4392
- "isexe": "^2.0.0"
4393
- },
4394
- "bin": {
4395
- "node-which": "bin/node-which"
4396
- },
4397
- "engines": {
4398
- "node": ">= 8"
4399
- }
4400
- },
4401
- "node_modules/word-wrap": {
4402
- "version": "1.2.5",
4403
- "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
4404
- "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
4405
- "dev": true,
4406
- "license": "MIT",
4407
- "engines": {
4408
- "node": ">=0.10.0"
4409
- }
4410
- },
4411
- "node_modules/yallist": {
4412
- "version": "3.1.1",
4413
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
4414
- "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
4415
- "dev": true,
4416
- "license": "ISC"
4417
- },
4418
- "node_modules/yocto-queue": {
4419
- "version": "0.1.0",
4420
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
4421
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
4422
- "dev": true,
4423
- "license": "MIT",
4424
- "engines": {
4425
- "node": ">=10"
4426
- },
4427
- "funding": {
4428
- "url": "https://github.com/sponsors/sindresorhus"
4429
- }
4430
- },
4431
- "node_modules/zod": {
4432
- "version": "4.1.13",
4433
- "resolved": "https://registry.npmjs.org/zod/-/zod-4.1.13.tgz",
4434
- "integrity": "sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig==",
4435
- "dev": true,
4436
- "license": "MIT",
4437
- "funding": {
4438
- "url": "https://github.com/sponsors/colinhacks"
4439
- }
4440
- },
4441
- "node_modules/zod-validation-error": {
4442
- "version": "4.0.2",
4443
- "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz",
4444
- "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==",
4445
- "dev": true,
4446
- "license": "MIT",
4447
- "engines": {
4448
- "node": ">=18.0.0"
4449
- },
4450
- "peerDependencies": {
4451
- "zod": "^3.25.0 || ^4.0.0"
4452
- }
4453
- }
4454
- }
4455
- }