@thyn/core 0.0.344 → 0.0.346

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 (105) hide show
  1. package/.github/workflows/static.yml +48 -0
  2. package/.github/workflows/test.yml +39 -0
  3. package/LICENSE +21 -0
  4. package/README.md +50 -0
  5. package/dist/{element.js → core/element.js} +14 -36
  6. package/dist/core/index.d.ts +1 -0
  7. package/dist/core/index.js +1 -0
  8. package/dist/index.d.ts +5 -2
  9. package/dist/index.js +5 -2
  10. package/dist/plugin/html-parser.d.ts +31 -0
  11. package/dist/plugin/html-parser.js +275 -0
  12. package/dist/plugin/index.d.ts +24 -0
  13. package/dist/plugin/index.js +1009 -0
  14. package/dist/plugin/utils.d.ts +12 -0
  15. package/dist/plugin/utils.js +194 -0
  16. package/docs/CNAME +1 -0
  17. package/docs/index.html +18 -0
  18. package/docs/package-lock.json +980 -0
  19. package/docs/package.json +15 -0
  20. package/docs/public/thyn.png +0 -0
  21. package/docs/public/thyn.svg +1 -0
  22. package/docs/src/App.thyn +10 -0
  23. package/docs/src/components/Button.thyn +3 -0
  24. package/docs/src/docs/GettingStarted.thyn +8 -0
  25. package/docs/src/main.css +17 -0
  26. package/docs/src/main.js +5 -0
  27. package/docs/src/pages/Home.thyn +147 -0
  28. package/docs/vite.config.js +7 -0
  29. package/package.json +18 -10
  30. package/src/{element.ts → core/element.ts} +14 -34
  31. package/src/core/index.ts +1 -0
  32. package/src/{signals.ts → core/signals.ts} +1 -1
  33. package/src/index.ts +5 -15
  34. package/src/plugin/html-parser.ts +332 -0
  35. package/src/plugin/index.ts +1127 -0
  36. package/src/plugin/utils.ts +213 -0
  37. package/tests/Bind.test.ts +14 -0
  38. package/tests/Bind.thyn +7 -0
  39. package/tests/ConsecInterps.test.ts +9 -0
  40. package/tests/ConsecInterps.thyn +9 -0
  41. package/tests/Counter.test.ts +12 -0
  42. package/tests/Counter.thyn +7 -0
  43. package/tests/DoubleQuotes.test.ts +9 -0
  44. package/tests/DoubleQuotes.thyn +3 -0
  45. package/tests/Escape.test.ts +9 -0
  46. package/tests/Escape.thyn +3 -0
  47. package/tests/EscapeDollar.test.ts +9 -0
  48. package/tests/EscapeDollar.thyn +5 -0
  49. package/tests/EventPipes.test.ts +13 -0
  50. package/tests/EventPipes.thyn +11 -0
  51. package/tests/List.test.ts +21 -0
  52. package/tests/List.thyn +15 -0
  53. package/tests/ListV2.test.ts +20 -0
  54. package/tests/ListV2.thyn +16 -0
  55. package/tests/MixElemAndText.test.ts +9 -0
  56. package/tests/MixElemAndText.thyn +12 -0
  57. package/tests/Show.test.ts +13 -0
  58. package/tests/Show.thyn +8 -0
  59. package/tests/Template.test.ts +9 -0
  60. package/tests/Template.thyn +8 -0
  61. package/tests/list/comprehensive.test.ts +659 -0
  62. package/tests/list/operations/ChildrenAppend.thyn +11 -0
  63. package/tests/list/operations/ChildrenFilter.thyn +11 -0
  64. package/tests/list/operations/ChildrenInsert.thyn +11 -0
  65. package/tests/list/operations/ChildrenNoneToSome.thyn +11 -0
  66. package/tests/list/operations/ChildrenPrepend.thyn +11 -0
  67. package/tests/list/operations/ChildrenRemove.thyn +11 -0
  68. package/tests/list/operations/ChildrenReplaceAll.thyn +11 -0
  69. package/tests/list/operations/ChildrenSomeToNone.thyn +11 -0
  70. package/tests/list/operations/ChildrenSort.thyn +11 -0
  71. package/tests/list/operations/IsolatedAppend.thyn +10 -0
  72. package/tests/list/operations/IsolatedFilter.thyn +16 -0
  73. package/tests/list/operations/IsolatedInsert.thyn +10 -0
  74. package/tests/list/operations/IsolatedMove.thyn +16 -0
  75. package/tests/list/operations/IsolatedNoneToSome.thyn +16 -0
  76. package/tests/list/operations/IsolatedPrepend.thyn +10 -0
  77. package/tests/list/operations/IsolatedRemove.thyn +17 -0
  78. package/tests/list/operations/IsolatedReplaceAll.thyn +10 -0
  79. package/tests/list/operations/IsolatedSomeToNone.thyn +10 -0
  80. package/tests/list/operations/IsolatedSort.thyn +16 -0
  81. package/tests/list/operations/TerminalAppend.thyn +12 -0
  82. package/tests/list/operations/TerminalFilter.thyn +12 -0
  83. package/tests/list/operations/TerminalInsert.thyn +12 -0
  84. package/tests/list/operations/TerminalNoneToSome.thyn +12 -0
  85. package/tests/list/operations/TerminalPrepend.thyn +12 -0
  86. package/tests/list/operations/TerminalRemove.thyn +12 -0
  87. package/tests/list/operations/TerminalReplaceAll.thyn +12 -0
  88. package/tests/list/operations/TerminalSomeToNone.thyn +12 -0
  89. package/tests/list/operations/TerminalSort.thyn +12 -0
  90. package/tests/tsconfig.json +14 -0
  91. package/tsconfig.json +11 -6
  92. package/types/thyn.d.ts +4 -0
  93. package/vitest.config.ts +7 -2
  94. package/tests/fx.test.ts +0 -31
  95. package/tests/lists.test.ts +0 -184
  96. package/tests/router.test.ts +0 -69
  97. package/tests/show.test.ts +0 -66
  98. package/tests/utils.ts +0 -3
  99. package/tsconfig.tsbuildinfo +0 -1
  100. /package/dist/{element.d.ts → core/element.d.ts} +0 -0
  101. /package/dist/{router.d.ts → core/router.d.ts} +0 -0
  102. /package/dist/{router.js → core/router.js} +0 -0
  103. /package/dist/{signals.d.ts → core/signals.d.ts} +0 -0
  104. /package/dist/{signals.js → core/signals.js} +0 -0
  105. /package/src/{router.ts → core/router.ts} +0 -0
@@ -0,0 +1,980 @@
1
+ {
2
+ "name": "thyn-app",
3
+ "version": "0.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "thyn-app",
9
+ "version": "0.0.0",
10
+ "dependencies": {
11
+ "@thyn/core": "^0.0.66"
12
+ },
13
+ "devDependencies": {
14
+ "@thyn/vite-plugin": "^0.0.66",
15
+ "vite": "^6.3.5"
16
+ }
17
+ },
18
+ "node_modules/@asamuzakjp/css-color": {
19
+ "version": "3.2.0",
20
+ "resolved": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-3.2.0.tgz",
21
+ "integrity": "sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==",
22
+ "dev": true,
23
+ "license": "MIT",
24
+ "dependencies": {
25
+ "@csstools/css-calc": "^2.1.3",
26
+ "@csstools/css-color-parser": "^3.0.9",
27
+ "@csstools/css-parser-algorithms": "^3.0.4",
28
+ "@csstools/css-tokenizer": "^3.0.3",
29
+ "lru-cache": "^10.4.3"
30
+ }
31
+ },
32
+ "node_modules/@csstools/color-helpers": {
33
+ "version": "5.0.2",
34
+ "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.0.2.tgz",
35
+ "integrity": "sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==",
36
+ "dev": true,
37
+ "funding": [
38
+ {
39
+ "type": "github",
40
+ "url": "https://github.com/sponsors/csstools"
41
+ },
42
+ {
43
+ "type": "opencollective",
44
+ "url": "https://opencollective.com/csstools"
45
+ }
46
+ ],
47
+ "license": "MIT-0",
48
+ "engines": {
49
+ "node": ">=18"
50
+ }
51
+ },
52
+ "node_modules/@csstools/css-calc": {
53
+ "version": "2.1.4",
54
+ "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.4.tgz",
55
+ "integrity": "sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==",
56
+ "dev": true,
57
+ "funding": [
58
+ {
59
+ "type": "github",
60
+ "url": "https://github.com/sponsors/csstools"
61
+ },
62
+ {
63
+ "type": "opencollective",
64
+ "url": "https://opencollective.com/csstools"
65
+ }
66
+ ],
67
+ "license": "MIT",
68
+ "engines": {
69
+ "node": ">=18"
70
+ },
71
+ "peerDependencies": {
72
+ "@csstools/css-parser-algorithms": "^3.0.5",
73
+ "@csstools/css-tokenizer": "^3.0.4"
74
+ }
75
+ },
76
+ "node_modules/@csstools/css-color-parser": {
77
+ "version": "3.0.10",
78
+ "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.0.10.tgz",
79
+ "integrity": "sha512-TiJ5Ajr6WRd1r8HSiwJvZBiJOqtH86aHpUjq5aEKWHiII2Qfjqd/HCWKPOW8EP4vcspXbHnXrwIDlu5savQipg==",
80
+ "dev": true,
81
+ "funding": [
82
+ {
83
+ "type": "github",
84
+ "url": "https://github.com/sponsors/csstools"
85
+ },
86
+ {
87
+ "type": "opencollective",
88
+ "url": "https://opencollective.com/csstools"
89
+ }
90
+ ],
91
+ "license": "MIT",
92
+ "dependencies": {
93
+ "@csstools/color-helpers": "^5.0.2",
94
+ "@csstools/css-calc": "^2.1.4"
95
+ },
96
+ "engines": {
97
+ "node": ">=18"
98
+ },
99
+ "peerDependencies": {
100
+ "@csstools/css-parser-algorithms": "^3.0.5",
101
+ "@csstools/css-tokenizer": "^3.0.4"
102
+ }
103
+ },
104
+ "node_modules/@csstools/css-parser-algorithms": {
105
+ "version": "3.0.5",
106
+ "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz",
107
+ "integrity": "sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==",
108
+ "dev": true,
109
+ "funding": [
110
+ {
111
+ "type": "github",
112
+ "url": "https://github.com/sponsors/csstools"
113
+ },
114
+ {
115
+ "type": "opencollective",
116
+ "url": "https://opencollective.com/csstools"
117
+ }
118
+ ],
119
+ "license": "MIT",
120
+ "engines": {
121
+ "node": ">=18"
122
+ },
123
+ "peerDependencies": {
124
+ "@csstools/css-tokenizer": "^3.0.4"
125
+ }
126
+ },
127
+ "node_modules/@csstools/css-tokenizer": {
128
+ "version": "3.0.4",
129
+ "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz",
130
+ "integrity": "sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==",
131
+ "dev": true,
132
+ "funding": [
133
+ {
134
+ "type": "github",
135
+ "url": "https://github.com/sponsors/csstools"
136
+ },
137
+ {
138
+ "type": "opencollective",
139
+ "url": "https://opencollective.com/csstools"
140
+ }
141
+ ],
142
+ "license": "MIT",
143
+ "engines": {
144
+ "node": ">=18"
145
+ }
146
+ },
147
+ "node_modules/@esbuild/linux-x64": {
148
+ "version": "0.25.5",
149
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.5.tgz",
150
+ "integrity": "sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==",
151
+ "cpu": [
152
+ "x64"
153
+ ],
154
+ "dev": true,
155
+ "license": "MIT",
156
+ "optional": true,
157
+ "os": [
158
+ "linux"
159
+ ],
160
+ "engines": {
161
+ "node": ">=18"
162
+ }
163
+ },
164
+ "node_modules/@jridgewell/sourcemap-codec": {
165
+ "version": "1.5.0",
166
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
167
+ "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
168
+ "dev": true,
169
+ "license": "MIT"
170
+ },
171
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
172
+ "version": "4.44.0",
173
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.44.0.tgz",
174
+ "integrity": "sha512-iUVJc3c0o8l9Sa/qlDL2Z9UP92UZZW1+EmQ4xfjTc1akr0iUFZNfxrXJ/R1T90h/ILm9iXEY6+iPrmYB3pXKjw==",
175
+ "cpu": [
176
+ "x64"
177
+ ],
178
+ "dev": true,
179
+ "license": "MIT",
180
+ "optional": true,
181
+ "os": [
182
+ "linux"
183
+ ]
184
+ },
185
+ "node_modules/@rollup/rollup-linux-x64-musl": {
186
+ "version": "4.44.0",
187
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.44.0.tgz",
188
+ "integrity": "sha512-PQUobbhLTQT5yz/SPg116VJBgz+XOtXt8D1ck+sfJJhuEsMj2jSej5yTdp8CvWBSceu+WW+ibVL6dm0ptG5fcA==",
189
+ "cpu": [
190
+ "x64"
191
+ ],
192
+ "dev": true,
193
+ "license": "MIT",
194
+ "optional": true,
195
+ "os": [
196
+ "linux"
197
+ ]
198
+ },
199
+ "node_modules/@thyn/core": {
200
+ "version": "0.0.66",
201
+ "resolved": "https://registry.npmjs.org/@thyn/core/-/core-0.0.66.tgz",
202
+ "integrity": "sha512-mduuGVBN00YgO+Hro836/+q9E6CtmGWPREwQl+C/kWQ7aiX/N+VQ64/Mn4FTDAfmxR5JXQ+IPt8abqZO8irgKw==",
203
+ "license": "MIT"
204
+ },
205
+ "node_modules/@thyn/vite-plugin": {
206
+ "version": "0.0.66",
207
+ "resolved": "https://registry.npmjs.org/@thyn/vite-plugin/-/vite-plugin-0.0.66.tgz",
208
+ "integrity": "sha512-9OM9/SETSJeayfYIMkhS6zSFE5vm0TFq1AHRJLeShCfDMEioH67supQ6Z30p4QGhFAwLl7yXLtCcbeEvYYGJ1Q==",
209
+ "dev": true,
210
+ "license": "ISC",
211
+ "dependencies": {
212
+ "acorn": "^8.14.1",
213
+ "acorn-walk": "^8.3.4",
214
+ "esbuild": "^0.25.5",
215
+ "jsdom": "^26.1.0",
216
+ "magic-string": "^0.30.17",
217
+ "postcss": "^8.5.6",
218
+ "postcss-selector-parser": "^7.1.0",
219
+ "typescript": "^5.8.3"
220
+ }
221
+ },
222
+ "node_modules/@types/estree": {
223
+ "version": "1.0.8",
224
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
225
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
226
+ "dev": true,
227
+ "license": "MIT"
228
+ },
229
+ "node_modules/acorn": {
230
+ "version": "8.15.0",
231
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
232
+ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
233
+ "dev": true,
234
+ "license": "MIT",
235
+ "bin": {
236
+ "acorn": "bin/acorn"
237
+ },
238
+ "engines": {
239
+ "node": ">=0.4.0"
240
+ }
241
+ },
242
+ "node_modules/acorn-walk": {
243
+ "version": "8.3.4",
244
+ "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz",
245
+ "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==",
246
+ "dev": true,
247
+ "license": "MIT",
248
+ "dependencies": {
249
+ "acorn": "^8.11.0"
250
+ },
251
+ "engines": {
252
+ "node": ">=0.4.0"
253
+ }
254
+ },
255
+ "node_modules/agent-base": {
256
+ "version": "7.1.3",
257
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz",
258
+ "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==",
259
+ "dev": true,
260
+ "license": "MIT",
261
+ "engines": {
262
+ "node": ">= 14"
263
+ }
264
+ },
265
+ "node_modules/cssesc": {
266
+ "version": "3.0.0",
267
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
268
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
269
+ "dev": true,
270
+ "license": "MIT",
271
+ "bin": {
272
+ "cssesc": "bin/cssesc"
273
+ },
274
+ "engines": {
275
+ "node": ">=4"
276
+ }
277
+ },
278
+ "node_modules/cssstyle": {
279
+ "version": "4.5.0",
280
+ "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.5.0.tgz",
281
+ "integrity": "sha512-/7gw8TGrvH/0g564EnhgFZogTMVe+lifpB7LWU+PEsiq5o83TUXR3fDbzTRXOJhoJwck5IS9ez3Em5LNMMO2aw==",
282
+ "dev": true,
283
+ "license": "MIT",
284
+ "dependencies": {
285
+ "@asamuzakjp/css-color": "^3.2.0",
286
+ "rrweb-cssom": "^0.8.0"
287
+ },
288
+ "engines": {
289
+ "node": ">=18"
290
+ }
291
+ },
292
+ "node_modules/data-urls": {
293
+ "version": "5.0.0",
294
+ "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz",
295
+ "integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==",
296
+ "dev": true,
297
+ "license": "MIT",
298
+ "dependencies": {
299
+ "whatwg-mimetype": "^4.0.0",
300
+ "whatwg-url": "^14.0.0"
301
+ },
302
+ "engines": {
303
+ "node": ">=18"
304
+ }
305
+ },
306
+ "node_modules/debug": {
307
+ "version": "4.4.1",
308
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz",
309
+ "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==",
310
+ "dev": true,
311
+ "license": "MIT",
312
+ "dependencies": {
313
+ "ms": "^2.1.3"
314
+ },
315
+ "engines": {
316
+ "node": ">=6.0"
317
+ },
318
+ "peerDependenciesMeta": {
319
+ "supports-color": {
320
+ "optional": true
321
+ }
322
+ }
323
+ },
324
+ "node_modules/decimal.js": {
325
+ "version": "10.5.0",
326
+ "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.5.0.tgz",
327
+ "integrity": "sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==",
328
+ "dev": true,
329
+ "license": "MIT"
330
+ },
331
+ "node_modules/entities": {
332
+ "version": "6.0.1",
333
+ "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
334
+ "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
335
+ "dev": true,
336
+ "license": "BSD-2-Clause",
337
+ "engines": {
338
+ "node": ">=0.12"
339
+ },
340
+ "funding": {
341
+ "url": "https://github.com/fb55/entities?sponsor=1"
342
+ }
343
+ },
344
+ "node_modules/esbuild": {
345
+ "version": "0.25.5",
346
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.5.tgz",
347
+ "integrity": "sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==",
348
+ "dev": true,
349
+ "hasInstallScript": true,
350
+ "license": "MIT",
351
+ "bin": {
352
+ "esbuild": "bin/esbuild"
353
+ },
354
+ "engines": {
355
+ "node": ">=18"
356
+ },
357
+ "optionalDependencies": {
358
+ "@esbuild/aix-ppc64": "0.25.5",
359
+ "@esbuild/android-arm": "0.25.5",
360
+ "@esbuild/android-arm64": "0.25.5",
361
+ "@esbuild/android-x64": "0.25.5",
362
+ "@esbuild/darwin-arm64": "0.25.5",
363
+ "@esbuild/darwin-x64": "0.25.5",
364
+ "@esbuild/freebsd-arm64": "0.25.5",
365
+ "@esbuild/freebsd-x64": "0.25.5",
366
+ "@esbuild/linux-arm": "0.25.5",
367
+ "@esbuild/linux-arm64": "0.25.5",
368
+ "@esbuild/linux-ia32": "0.25.5",
369
+ "@esbuild/linux-loong64": "0.25.5",
370
+ "@esbuild/linux-mips64el": "0.25.5",
371
+ "@esbuild/linux-ppc64": "0.25.5",
372
+ "@esbuild/linux-riscv64": "0.25.5",
373
+ "@esbuild/linux-s390x": "0.25.5",
374
+ "@esbuild/linux-x64": "0.25.5",
375
+ "@esbuild/netbsd-arm64": "0.25.5",
376
+ "@esbuild/netbsd-x64": "0.25.5",
377
+ "@esbuild/openbsd-arm64": "0.25.5",
378
+ "@esbuild/openbsd-x64": "0.25.5",
379
+ "@esbuild/sunos-x64": "0.25.5",
380
+ "@esbuild/win32-arm64": "0.25.5",
381
+ "@esbuild/win32-ia32": "0.25.5",
382
+ "@esbuild/win32-x64": "0.25.5"
383
+ }
384
+ },
385
+ "node_modules/fdir": {
386
+ "version": "6.4.6",
387
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz",
388
+ "integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==",
389
+ "dev": true,
390
+ "license": "MIT",
391
+ "peerDependencies": {
392
+ "picomatch": "^3 || ^4"
393
+ },
394
+ "peerDependenciesMeta": {
395
+ "picomatch": {
396
+ "optional": true
397
+ }
398
+ }
399
+ },
400
+ "node_modules/html-encoding-sniffer": {
401
+ "version": "4.0.0",
402
+ "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz",
403
+ "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==",
404
+ "dev": true,
405
+ "license": "MIT",
406
+ "dependencies": {
407
+ "whatwg-encoding": "^3.1.1"
408
+ },
409
+ "engines": {
410
+ "node": ">=18"
411
+ }
412
+ },
413
+ "node_modules/http-proxy-agent": {
414
+ "version": "7.0.2",
415
+ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
416
+ "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
417
+ "dev": true,
418
+ "license": "MIT",
419
+ "dependencies": {
420
+ "agent-base": "^7.1.0",
421
+ "debug": "^4.3.4"
422
+ },
423
+ "engines": {
424
+ "node": ">= 14"
425
+ }
426
+ },
427
+ "node_modules/https-proxy-agent": {
428
+ "version": "7.0.6",
429
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
430
+ "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
431
+ "dev": true,
432
+ "license": "MIT",
433
+ "dependencies": {
434
+ "agent-base": "^7.1.2",
435
+ "debug": "4"
436
+ },
437
+ "engines": {
438
+ "node": ">= 14"
439
+ }
440
+ },
441
+ "node_modules/iconv-lite": {
442
+ "version": "0.6.3",
443
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
444
+ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
445
+ "dev": true,
446
+ "license": "MIT",
447
+ "dependencies": {
448
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
449
+ },
450
+ "engines": {
451
+ "node": ">=0.10.0"
452
+ }
453
+ },
454
+ "node_modules/is-potential-custom-element-name": {
455
+ "version": "1.0.1",
456
+ "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
457
+ "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
458
+ "dev": true,
459
+ "license": "MIT"
460
+ },
461
+ "node_modules/jsdom": {
462
+ "version": "26.1.0",
463
+ "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-26.1.0.tgz",
464
+ "integrity": "sha512-Cvc9WUhxSMEo4McES3P7oK3QaXldCfNWp7pl2NNeiIFlCoLr3kfq9kb1fxftiwk1FLV7CvpvDfonxtzUDeSOPg==",
465
+ "dev": true,
466
+ "license": "MIT",
467
+ "dependencies": {
468
+ "cssstyle": "^4.2.1",
469
+ "data-urls": "^5.0.0",
470
+ "decimal.js": "^10.5.0",
471
+ "html-encoding-sniffer": "^4.0.0",
472
+ "http-proxy-agent": "^7.0.2",
473
+ "https-proxy-agent": "^7.0.6",
474
+ "is-potential-custom-element-name": "^1.0.1",
475
+ "nwsapi": "^2.2.16",
476
+ "parse5": "^7.2.1",
477
+ "rrweb-cssom": "^0.8.0",
478
+ "saxes": "^6.0.0",
479
+ "symbol-tree": "^3.2.4",
480
+ "tough-cookie": "^5.1.1",
481
+ "w3c-xmlserializer": "^5.0.0",
482
+ "webidl-conversions": "^7.0.0",
483
+ "whatwg-encoding": "^3.1.1",
484
+ "whatwg-mimetype": "^4.0.0",
485
+ "whatwg-url": "^14.1.1",
486
+ "ws": "^8.18.0",
487
+ "xml-name-validator": "^5.0.0"
488
+ },
489
+ "engines": {
490
+ "node": ">=18"
491
+ },
492
+ "peerDependencies": {
493
+ "canvas": "^3.0.0"
494
+ },
495
+ "peerDependenciesMeta": {
496
+ "canvas": {
497
+ "optional": true
498
+ }
499
+ }
500
+ },
501
+ "node_modules/lru-cache": {
502
+ "version": "10.4.3",
503
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
504
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
505
+ "dev": true,
506
+ "license": "ISC"
507
+ },
508
+ "node_modules/magic-string": {
509
+ "version": "0.30.17",
510
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz",
511
+ "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
512
+ "dev": true,
513
+ "license": "MIT",
514
+ "dependencies": {
515
+ "@jridgewell/sourcemap-codec": "^1.5.0"
516
+ }
517
+ },
518
+ "node_modules/ms": {
519
+ "version": "2.1.3",
520
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
521
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
522
+ "dev": true,
523
+ "license": "MIT"
524
+ },
525
+ "node_modules/nanoid": {
526
+ "version": "3.3.11",
527
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
528
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
529
+ "dev": true,
530
+ "funding": [
531
+ {
532
+ "type": "github",
533
+ "url": "https://github.com/sponsors/ai"
534
+ }
535
+ ],
536
+ "license": "MIT",
537
+ "bin": {
538
+ "nanoid": "bin/nanoid.cjs"
539
+ },
540
+ "engines": {
541
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
542
+ }
543
+ },
544
+ "node_modules/nwsapi": {
545
+ "version": "2.2.20",
546
+ "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.20.tgz",
547
+ "integrity": "sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA==",
548
+ "dev": true,
549
+ "license": "MIT"
550
+ },
551
+ "node_modules/parse5": {
552
+ "version": "7.3.0",
553
+ "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz",
554
+ "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==",
555
+ "dev": true,
556
+ "license": "MIT",
557
+ "dependencies": {
558
+ "entities": "^6.0.0"
559
+ },
560
+ "funding": {
561
+ "url": "https://github.com/inikulin/parse5?sponsor=1"
562
+ }
563
+ },
564
+ "node_modules/picocolors": {
565
+ "version": "1.1.1",
566
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
567
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
568
+ "dev": true,
569
+ "license": "ISC"
570
+ },
571
+ "node_modules/picomatch": {
572
+ "version": "4.0.2",
573
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz",
574
+ "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
575
+ "dev": true,
576
+ "license": "MIT",
577
+ "engines": {
578
+ "node": ">=12"
579
+ },
580
+ "funding": {
581
+ "url": "https://github.com/sponsors/jonschlinkert"
582
+ }
583
+ },
584
+ "node_modules/postcss": {
585
+ "version": "8.5.6",
586
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
587
+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
588
+ "dev": true,
589
+ "funding": [
590
+ {
591
+ "type": "opencollective",
592
+ "url": "https://opencollective.com/postcss/"
593
+ },
594
+ {
595
+ "type": "tidelift",
596
+ "url": "https://tidelift.com/funding/github/npm/postcss"
597
+ },
598
+ {
599
+ "type": "github",
600
+ "url": "https://github.com/sponsors/ai"
601
+ }
602
+ ],
603
+ "license": "MIT",
604
+ "dependencies": {
605
+ "nanoid": "^3.3.11",
606
+ "picocolors": "^1.1.1",
607
+ "source-map-js": "^1.2.1"
608
+ },
609
+ "engines": {
610
+ "node": "^10 || ^12 || >=14"
611
+ }
612
+ },
613
+ "node_modules/postcss-selector-parser": {
614
+ "version": "7.1.0",
615
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz",
616
+ "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==",
617
+ "dev": true,
618
+ "license": "MIT",
619
+ "dependencies": {
620
+ "cssesc": "^3.0.0",
621
+ "util-deprecate": "^1.0.2"
622
+ },
623
+ "engines": {
624
+ "node": ">=4"
625
+ }
626
+ },
627
+ "node_modules/punycode": {
628
+ "version": "2.3.1",
629
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
630
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
631
+ "dev": true,
632
+ "license": "MIT",
633
+ "engines": {
634
+ "node": ">=6"
635
+ }
636
+ },
637
+ "node_modules/rollup": {
638
+ "version": "4.44.0",
639
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.44.0.tgz",
640
+ "integrity": "sha512-qHcdEzLCiktQIfwBq420pn2dP+30uzqYxv9ETm91wdt2R9AFcWfjNAmje4NWlnCIQ5RMTzVf0ZyisOKqHR6RwA==",
641
+ "dev": true,
642
+ "license": "MIT",
643
+ "dependencies": {
644
+ "@types/estree": "1.0.8"
645
+ },
646
+ "bin": {
647
+ "rollup": "dist/bin/rollup"
648
+ },
649
+ "engines": {
650
+ "node": ">=18.0.0",
651
+ "npm": ">=8.0.0"
652
+ },
653
+ "optionalDependencies": {
654
+ "@rollup/rollup-android-arm-eabi": "4.44.0",
655
+ "@rollup/rollup-android-arm64": "4.44.0",
656
+ "@rollup/rollup-darwin-arm64": "4.44.0",
657
+ "@rollup/rollup-darwin-x64": "4.44.0",
658
+ "@rollup/rollup-freebsd-arm64": "4.44.0",
659
+ "@rollup/rollup-freebsd-x64": "4.44.0",
660
+ "@rollup/rollup-linux-arm-gnueabihf": "4.44.0",
661
+ "@rollup/rollup-linux-arm-musleabihf": "4.44.0",
662
+ "@rollup/rollup-linux-arm64-gnu": "4.44.0",
663
+ "@rollup/rollup-linux-arm64-musl": "4.44.0",
664
+ "@rollup/rollup-linux-loongarch64-gnu": "4.44.0",
665
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.44.0",
666
+ "@rollup/rollup-linux-riscv64-gnu": "4.44.0",
667
+ "@rollup/rollup-linux-riscv64-musl": "4.44.0",
668
+ "@rollup/rollup-linux-s390x-gnu": "4.44.0",
669
+ "@rollup/rollup-linux-x64-gnu": "4.44.0",
670
+ "@rollup/rollup-linux-x64-musl": "4.44.0",
671
+ "@rollup/rollup-win32-arm64-msvc": "4.44.0",
672
+ "@rollup/rollup-win32-ia32-msvc": "4.44.0",
673
+ "@rollup/rollup-win32-x64-msvc": "4.44.0",
674
+ "fsevents": "~2.3.2"
675
+ }
676
+ },
677
+ "node_modules/rrweb-cssom": {
678
+ "version": "0.8.0",
679
+ "resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.8.0.tgz",
680
+ "integrity": "sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==",
681
+ "dev": true,
682
+ "license": "MIT"
683
+ },
684
+ "node_modules/safer-buffer": {
685
+ "version": "2.1.2",
686
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
687
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
688
+ "dev": true,
689
+ "license": "MIT"
690
+ },
691
+ "node_modules/saxes": {
692
+ "version": "6.0.0",
693
+ "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz",
694
+ "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==",
695
+ "dev": true,
696
+ "license": "ISC",
697
+ "dependencies": {
698
+ "xmlchars": "^2.2.0"
699
+ },
700
+ "engines": {
701
+ "node": ">=v12.22.7"
702
+ }
703
+ },
704
+ "node_modules/source-map-js": {
705
+ "version": "1.2.1",
706
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
707
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
708
+ "dev": true,
709
+ "license": "BSD-3-Clause",
710
+ "engines": {
711
+ "node": ">=0.10.0"
712
+ }
713
+ },
714
+ "node_modules/symbol-tree": {
715
+ "version": "3.2.4",
716
+ "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
717
+ "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
718
+ "dev": true,
719
+ "license": "MIT"
720
+ },
721
+ "node_modules/tinyglobby": {
722
+ "version": "0.2.14",
723
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz",
724
+ "integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==",
725
+ "dev": true,
726
+ "license": "MIT",
727
+ "dependencies": {
728
+ "fdir": "^6.4.4",
729
+ "picomatch": "^4.0.2"
730
+ },
731
+ "engines": {
732
+ "node": ">=12.0.0"
733
+ },
734
+ "funding": {
735
+ "url": "https://github.com/sponsors/SuperchupuDev"
736
+ }
737
+ },
738
+ "node_modules/tldts": {
739
+ "version": "6.1.86",
740
+ "resolved": "https://registry.npmjs.org/tldts/-/tldts-6.1.86.tgz",
741
+ "integrity": "sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==",
742
+ "dev": true,
743
+ "license": "MIT",
744
+ "dependencies": {
745
+ "tldts-core": "^6.1.86"
746
+ },
747
+ "bin": {
748
+ "tldts": "bin/cli.js"
749
+ }
750
+ },
751
+ "node_modules/tldts-core": {
752
+ "version": "6.1.86",
753
+ "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.86.tgz",
754
+ "integrity": "sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==",
755
+ "dev": true,
756
+ "license": "MIT"
757
+ },
758
+ "node_modules/tough-cookie": {
759
+ "version": "5.1.2",
760
+ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-5.1.2.tgz",
761
+ "integrity": "sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==",
762
+ "dev": true,
763
+ "license": "BSD-3-Clause",
764
+ "dependencies": {
765
+ "tldts": "^6.1.32"
766
+ },
767
+ "engines": {
768
+ "node": ">=16"
769
+ }
770
+ },
771
+ "node_modules/tr46": {
772
+ "version": "5.1.1",
773
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.1.1.tgz",
774
+ "integrity": "sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==",
775
+ "dev": true,
776
+ "license": "MIT",
777
+ "dependencies": {
778
+ "punycode": "^2.3.1"
779
+ },
780
+ "engines": {
781
+ "node": ">=18"
782
+ }
783
+ },
784
+ "node_modules/typescript": {
785
+ "version": "5.8.3",
786
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz",
787
+ "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
788
+ "dev": true,
789
+ "license": "Apache-2.0",
790
+ "bin": {
791
+ "tsc": "bin/tsc",
792
+ "tsserver": "bin/tsserver"
793
+ },
794
+ "engines": {
795
+ "node": ">=14.17"
796
+ }
797
+ },
798
+ "node_modules/util-deprecate": {
799
+ "version": "1.0.2",
800
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
801
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
802
+ "dev": true,
803
+ "license": "MIT"
804
+ },
805
+ "node_modules/vite": {
806
+ "version": "6.3.5",
807
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz",
808
+ "integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==",
809
+ "dev": true,
810
+ "license": "MIT",
811
+ "dependencies": {
812
+ "esbuild": "^0.25.0",
813
+ "fdir": "^6.4.4",
814
+ "picomatch": "^4.0.2",
815
+ "postcss": "^8.5.3",
816
+ "rollup": "^4.34.9",
817
+ "tinyglobby": "^0.2.13"
818
+ },
819
+ "bin": {
820
+ "vite": "bin/vite.js"
821
+ },
822
+ "engines": {
823
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
824
+ },
825
+ "funding": {
826
+ "url": "https://github.com/vitejs/vite?sponsor=1"
827
+ },
828
+ "optionalDependencies": {
829
+ "fsevents": "~2.3.3"
830
+ },
831
+ "peerDependencies": {
832
+ "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
833
+ "jiti": ">=1.21.0",
834
+ "less": "*",
835
+ "lightningcss": "^1.21.0",
836
+ "sass": "*",
837
+ "sass-embedded": "*",
838
+ "stylus": "*",
839
+ "sugarss": "*",
840
+ "terser": "^5.16.0",
841
+ "tsx": "^4.8.1",
842
+ "yaml": "^2.4.2"
843
+ },
844
+ "peerDependenciesMeta": {
845
+ "@types/node": {
846
+ "optional": true
847
+ },
848
+ "jiti": {
849
+ "optional": true
850
+ },
851
+ "less": {
852
+ "optional": true
853
+ },
854
+ "lightningcss": {
855
+ "optional": true
856
+ },
857
+ "sass": {
858
+ "optional": true
859
+ },
860
+ "sass-embedded": {
861
+ "optional": true
862
+ },
863
+ "stylus": {
864
+ "optional": true
865
+ },
866
+ "sugarss": {
867
+ "optional": true
868
+ },
869
+ "terser": {
870
+ "optional": true
871
+ },
872
+ "tsx": {
873
+ "optional": true
874
+ },
875
+ "yaml": {
876
+ "optional": true
877
+ }
878
+ }
879
+ },
880
+ "node_modules/w3c-xmlserializer": {
881
+ "version": "5.0.0",
882
+ "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz",
883
+ "integrity": "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==",
884
+ "dev": true,
885
+ "license": "MIT",
886
+ "dependencies": {
887
+ "xml-name-validator": "^5.0.0"
888
+ },
889
+ "engines": {
890
+ "node": ">=18"
891
+ }
892
+ },
893
+ "node_modules/webidl-conversions": {
894
+ "version": "7.0.0",
895
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
896
+ "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==",
897
+ "dev": true,
898
+ "license": "BSD-2-Clause",
899
+ "engines": {
900
+ "node": ">=12"
901
+ }
902
+ },
903
+ "node_modules/whatwg-encoding": {
904
+ "version": "3.1.1",
905
+ "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz",
906
+ "integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==",
907
+ "dev": true,
908
+ "license": "MIT",
909
+ "dependencies": {
910
+ "iconv-lite": "0.6.3"
911
+ },
912
+ "engines": {
913
+ "node": ">=18"
914
+ }
915
+ },
916
+ "node_modules/whatwg-mimetype": {
917
+ "version": "4.0.0",
918
+ "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz",
919
+ "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==",
920
+ "dev": true,
921
+ "license": "MIT",
922
+ "engines": {
923
+ "node": ">=18"
924
+ }
925
+ },
926
+ "node_modules/whatwg-url": {
927
+ "version": "14.2.0",
928
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.2.0.tgz",
929
+ "integrity": "sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==",
930
+ "dev": true,
931
+ "license": "MIT",
932
+ "dependencies": {
933
+ "tr46": "^5.1.0",
934
+ "webidl-conversions": "^7.0.0"
935
+ },
936
+ "engines": {
937
+ "node": ">=18"
938
+ }
939
+ },
940
+ "node_modules/ws": {
941
+ "version": "8.18.2",
942
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.2.tgz",
943
+ "integrity": "sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==",
944
+ "dev": true,
945
+ "license": "MIT",
946
+ "engines": {
947
+ "node": ">=10.0.0"
948
+ },
949
+ "peerDependencies": {
950
+ "bufferutil": "^4.0.1",
951
+ "utf-8-validate": ">=5.0.2"
952
+ },
953
+ "peerDependenciesMeta": {
954
+ "bufferutil": {
955
+ "optional": true
956
+ },
957
+ "utf-8-validate": {
958
+ "optional": true
959
+ }
960
+ }
961
+ },
962
+ "node_modules/xml-name-validator": {
963
+ "version": "5.0.0",
964
+ "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz",
965
+ "integrity": "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==",
966
+ "dev": true,
967
+ "license": "Apache-2.0",
968
+ "engines": {
969
+ "node": ">=18"
970
+ }
971
+ },
972
+ "node_modules/xmlchars": {
973
+ "version": "2.2.0",
974
+ "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
975
+ "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
976
+ "dev": true,
977
+ "license": "MIT"
978
+ }
979
+ }
980
+ }