jac-client 0.1.0__py3-none-any.whl

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 (33) hide show
  1. jac_client/docs/README.md +629 -0
  2. jac_client/docs/advanced-state.md +706 -0
  3. jac_client/docs/imports.md +650 -0
  4. jac_client/docs/lifecycle-hooks.md +554 -0
  5. jac_client/docs/routing.md +530 -0
  6. jac_client/examples/little-x/app.jac +615 -0
  7. jac_client/examples/little-x/package-lock.json +2840 -0
  8. jac_client/examples/little-x/package.json +23 -0
  9. jac_client/examples/little-x/submit-button.jac +8 -0
  10. jac_client/examples/todo-app/README.md +82 -0
  11. jac_client/examples/todo-app/app.jac +683 -0
  12. jac_client/examples/todo-app/package-lock.json +999 -0
  13. jac_client/examples/todo-app/package.json +22 -0
  14. jac_client/plugin/cli.py +328 -0
  15. jac_client/plugin/client.py +41 -0
  16. jac_client/plugin/client_runtime.jac +941 -0
  17. jac_client/plugin/vite_client_bundle.py +470 -0
  18. jac_client/tests/__init__.py +2 -0
  19. jac_client/tests/fixtures/button.jac +6 -0
  20. jac_client/tests/fixtures/client_app.jac +18 -0
  21. jac_client/tests/fixtures/client_app_with_antd.jac +21 -0
  22. jac_client/tests/fixtures/js_import.jac +30 -0
  23. jac_client/tests/fixtures/package-lock.json +329 -0
  24. jac_client/tests/fixtures/package.json +11 -0
  25. jac_client/tests/fixtures/relative_import.jac +13 -0
  26. jac_client/tests/fixtures/test_fragments_spread.jac +44 -0
  27. jac_client/tests/fixtures/utils.js +22 -0
  28. jac_client/tests/test_cl.py +360 -0
  29. jac_client/tests/test_create_jac_app.py +139 -0
  30. jac_client-0.1.0.dist-info/METADATA +126 -0
  31. jac_client-0.1.0.dist-info/RECORD +33 -0
  32. jac_client-0.1.0.dist-info/WHEEL +4 -0
  33. jac_client-0.1.0.dist-info/entry_points.txt +4 -0
@@ -0,0 +1,999 @@
1
+ {
2
+ "name": "todo-app",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "todo-app",
9
+ "version": "1.0.0",
10
+ "license": "ISC",
11
+ "dependencies": {
12
+ "react": "^18.2.0",
13
+ "react-dom": "^18.2.0"
14
+ },
15
+ "devDependencies": {
16
+ "vite": "^5.0.0"
17
+ }
18
+ },
19
+ "node_modules/@esbuild/aix-ppc64": {
20
+ "version": "0.21.5",
21
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz",
22
+ "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==",
23
+ "cpu": [
24
+ "ppc64"
25
+ ],
26
+ "dev": true,
27
+ "license": "MIT",
28
+ "optional": true,
29
+ "os": [
30
+ "aix"
31
+ ],
32
+ "engines": {
33
+ "node": ">=12"
34
+ }
35
+ },
36
+ "node_modules/@esbuild/android-arm": {
37
+ "version": "0.21.5",
38
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz",
39
+ "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==",
40
+ "cpu": [
41
+ "arm"
42
+ ],
43
+ "dev": true,
44
+ "license": "MIT",
45
+ "optional": true,
46
+ "os": [
47
+ "android"
48
+ ],
49
+ "engines": {
50
+ "node": ">=12"
51
+ }
52
+ },
53
+ "node_modules/@esbuild/android-arm64": {
54
+ "version": "0.21.5",
55
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz",
56
+ "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==",
57
+ "cpu": [
58
+ "arm64"
59
+ ],
60
+ "dev": true,
61
+ "license": "MIT",
62
+ "optional": true,
63
+ "os": [
64
+ "android"
65
+ ],
66
+ "engines": {
67
+ "node": ">=12"
68
+ }
69
+ },
70
+ "node_modules/@esbuild/android-x64": {
71
+ "version": "0.21.5",
72
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz",
73
+ "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==",
74
+ "cpu": [
75
+ "x64"
76
+ ],
77
+ "dev": true,
78
+ "license": "MIT",
79
+ "optional": true,
80
+ "os": [
81
+ "android"
82
+ ],
83
+ "engines": {
84
+ "node": ">=12"
85
+ }
86
+ },
87
+ "node_modules/@esbuild/darwin-arm64": {
88
+ "version": "0.21.5",
89
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz",
90
+ "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==",
91
+ "cpu": [
92
+ "arm64"
93
+ ],
94
+ "dev": true,
95
+ "license": "MIT",
96
+ "optional": true,
97
+ "os": [
98
+ "darwin"
99
+ ],
100
+ "engines": {
101
+ "node": ">=12"
102
+ }
103
+ },
104
+ "node_modules/@esbuild/darwin-x64": {
105
+ "version": "0.21.5",
106
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz",
107
+ "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==",
108
+ "cpu": [
109
+ "x64"
110
+ ],
111
+ "dev": true,
112
+ "license": "MIT",
113
+ "optional": true,
114
+ "os": [
115
+ "darwin"
116
+ ],
117
+ "engines": {
118
+ "node": ">=12"
119
+ }
120
+ },
121
+ "node_modules/@esbuild/freebsd-arm64": {
122
+ "version": "0.21.5",
123
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz",
124
+ "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==",
125
+ "cpu": [
126
+ "arm64"
127
+ ],
128
+ "dev": true,
129
+ "license": "MIT",
130
+ "optional": true,
131
+ "os": [
132
+ "freebsd"
133
+ ],
134
+ "engines": {
135
+ "node": ">=12"
136
+ }
137
+ },
138
+ "node_modules/@esbuild/freebsd-x64": {
139
+ "version": "0.21.5",
140
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz",
141
+ "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==",
142
+ "cpu": [
143
+ "x64"
144
+ ],
145
+ "dev": true,
146
+ "license": "MIT",
147
+ "optional": true,
148
+ "os": [
149
+ "freebsd"
150
+ ],
151
+ "engines": {
152
+ "node": ">=12"
153
+ }
154
+ },
155
+ "node_modules/@esbuild/linux-arm": {
156
+ "version": "0.21.5",
157
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz",
158
+ "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==",
159
+ "cpu": [
160
+ "arm"
161
+ ],
162
+ "dev": true,
163
+ "license": "MIT",
164
+ "optional": true,
165
+ "os": [
166
+ "linux"
167
+ ],
168
+ "engines": {
169
+ "node": ">=12"
170
+ }
171
+ },
172
+ "node_modules/@esbuild/linux-arm64": {
173
+ "version": "0.21.5",
174
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz",
175
+ "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==",
176
+ "cpu": [
177
+ "arm64"
178
+ ],
179
+ "dev": true,
180
+ "license": "MIT",
181
+ "optional": true,
182
+ "os": [
183
+ "linux"
184
+ ],
185
+ "engines": {
186
+ "node": ">=12"
187
+ }
188
+ },
189
+ "node_modules/@esbuild/linux-ia32": {
190
+ "version": "0.21.5",
191
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz",
192
+ "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==",
193
+ "cpu": [
194
+ "ia32"
195
+ ],
196
+ "dev": true,
197
+ "license": "MIT",
198
+ "optional": true,
199
+ "os": [
200
+ "linux"
201
+ ],
202
+ "engines": {
203
+ "node": ">=12"
204
+ }
205
+ },
206
+ "node_modules/@esbuild/linux-loong64": {
207
+ "version": "0.21.5",
208
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz",
209
+ "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==",
210
+ "cpu": [
211
+ "loong64"
212
+ ],
213
+ "dev": true,
214
+ "license": "MIT",
215
+ "optional": true,
216
+ "os": [
217
+ "linux"
218
+ ],
219
+ "engines": {
220
+ "node": ">=12"
221
+ }
222
+ },
223
+ "node_modules/@esbuild/linux-mips64el": {
224
+ "version": "0.21.5",
225
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz",
226
+ "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==",
227
+ "cpu": [
228
+ "mips64el"
229
+ ],
230
+ "dev": true,
231
+ "license": "MIT",
232
+ "optional": true,
233
+ "os": [
234
+ "linux"
235
+ ],
236
+ "engines": {
237
+ "node": ">=12"
238
+ }
239
+ },
240
+ "node_modules/@esbuild/linux-ppc64": {
241
+ "version": "0.21.5",
242
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz",
243
+ "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==",
244
+ "cpu": [
245
+ "ppc64"
246
+ ],
247
+ "dev": true,
248
+ "license": "MIT",
249
+ "optional": true,
250
+ "os": [
251
+ "linux"
252
+ ],
253
+ "engines": {
254
+ "node": ">=12"
255
+ }
256
+ },
257
+ "node_modules/@esbuild/linux-riscv64": {
258
+ "version": "0.21.5",
259
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz",
260
+ "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==",
261
+ "cpu": [
262
+ "riscv64"
263
+ ],
264
+ "dev": true,
265
+ "license": "MIT",
266
+ "optional": true,
267
+ "os": [
268
+ "linux"
269
+ ],
270
+ "engines": {
271
+ "node": ">=12"
272
+ }
273
+ },
274
+ "node_modules/@esbuild/linux-s390x": {
275
+ "version": "0.21.5",
276
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz",
277
+ "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==",
278
+ "cpu": [
279
+ "s390x"
280
+ ],
281
+ "dev": true,
282
+ "license": "MIT",
283
+ "optional": true,
284
+ "os": [
285
+ "linux"
286
+ ],
287
+ "engines": {
288
+ "node": ">=12"
289
+ }
290
+ },
291
+ "node_modules/@esbuild/linux-x64": {
292
+ "version": "0.21.5",
293
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz",
294
+ "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==",
295
+ "cpu": [
296
+ "x64"
297
+ ],
298
+ "dev": true,
299
+ "license": "MIT",
300
+ "optional": true,
301
+ "os": [
302
+ "linux"
303
+ ],
304
+ "engines": {
305
+ "node": ">=12"
306
+ }
307
+ },
308
+ "node_modules/@esbuild/netbsd-x64": {
309
+ "version": "0.21.5",
310
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz",
311
+ "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==",
312
+ "cpu": [
313
+ "x64"
314
+ ],
315
+ "dev": true,
316
+ "license": "MIT",
317
+ "optional": true,
318
+ "os": [
319
+ "netbsd"
320
+ ],
321
+ "engines": {
322
+ "node": ">=12"
323
+ }
324
+ },
325
+ "node_modules/@esbuild/openbsd-x64": {
326
+ "version": "0.21.5",
327
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
328
+ "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==",
329
+ "cpu": [
330
+ "x64"
331
+ ],
332
+ "dev": true,
333
+ "license": "MIT",
334
+ "optional": true,
335
+ "os": [
336
+ "openbsd"
337
+ ],
338
+ "engines": {
339
+ "node": ">=12"
340
+ }
341
+ },
342
+ "node_modules/@esbuild/sunos-x64": {
343
+ "version": "0.21.5",
344
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz",
345
+ "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==",
346
+ "cpu": [
347
+ "x64"
348
+ ],
349
+ "dev": true,
350
+ "license": "MIT",
351
+ "optional": true,
352
+ "os": [
353
+ "sunos"
354
+ ],
355
+ "engines": {
356
+ "node": ">=12"
357
+ }
358
+ },
359
+ "node_modules/@esbuild/win32-arm64": {
360
+ "version": "0.21.5",
361
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz",
362
+ "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==",
363
+ "cpu": [
364
+ "arm64"
365
+ ],
366
+ "dev": true,
367
+ "license": "MIT",
368
+ "optional": true,
369
+ "os": [
370
+ "win32"
371
+ ],
372
+ "engines": {
373
+ "node": ">=12"
374
+ }
375
+ },
376
+ "node_modules/@esbuild/win32-ia32": {
377
+ "version": "0.21.5",
378
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz",
379
+ "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==",
380
+ "cpu": [
381
+ "ia32"
382
+ ],
383
+ "dev": true,
384
+ "license": "MIT",
385
+ "optional": true,
386
+ "os": [
387
+ "win32"
388
+ ],
389
+ "engines": {
390
+ "node": ">=12"
391
+ }
392
+ },
393
+ "node_modules/@esbuild/win32-x64": {
394
+ "version": "0.21.5",
395
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz",
396
+ "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==",
397
+ "cpu": [
398
+ "x64"
399
+ ],
400
+ "dev": true,
401
+ "license": "MIT",
402
+ "optional": true,
403
+ "os": [
404
+ "win32"
405
+ ],
406
+ "engines": {
407
+ "node": ">=12"
408
+ }
409
+ },
410
+ "node_modules/@rollup/rollup-android-arm-eabi": {
411
+ "version": "4.52.5",
412
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.5.tgz",
413
+ "integrity": "sha512-8c1vW4ocv3UOMp9K+gToY5zL2XiiVw3k7f1ksf4yO1FlDFQ1C2u72iACFnSOceJFsWskc2WZNqeRhFRPzv+wtQ==",
414
+ "cpu": [
415
+ "arm"
416
+ ],
417
+ "dev": true,
418
+ "license": "MIT",
419
+ "optional": true,
420
+ "os": [
421
+ "android"
422
+ ]
423
+ },
424
+ "node_modules/@rollup/rollup-android-arm64": {
425
+ "version": "4.52.5",
426
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.5.tgz",
427
+ "integrity": "sha512-mQGfsIEFcu21mvqkEKKu2dYmtuSZOBMmAl5CFlPGLY94Vlcm+zWApK7F/eocsNzp8tKmbeBP8yXyAbx0XHsFNA==",
428
+ "cpu": [
429
+ "arm64"
430
+ ],
431
+ "dev": true,
432
+ "license": "MIT",
433
+ "optional": true,
434
+ "os": [
435
+ "android"
436
+ ]
437
+ },
438
+ "node_modules/@rollup/rollup-darwin-arm64": {
439
+ "version": "4.52.5",
440
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.5.tgz",
441
+ "integrity": "sha512-takF3CR71mCAGA+v794QUZ0b6ZSrgJkArC+gUiG6LB6TQty9T0Mqh3m2ImRBOxS2IeYBo4lKWIieSvnEk2OQWA==",
442
+ "cpu": [
443
+ "arm64"
444
+ ],
445
+ "dev": true,
446
+ "license": "MIT",
447
+ "optional": true,
448
+ "os": [
449
+ "darwin"
450
+ ]
451
+ },
452
+ "node_modules/@rollup/rollup-darwin-x64": {
453
+ "version": "4.52.5",
454
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.5.tgz",
455
+ "integrity": "sha512-W901Pla8Ya95WpxDn//VF9K9u2JbocwV/v75TE0YIHNTbhqUTv9w4VuQ9MaWlNOkkEfFwkdNhXgcLqPSmHy0fA==",
456
+ "cpu": [
457
+ "x64"
458
+ ],
459
+ "dev": true,
460
+ "license": "MIT",
461
+ "optional": true,
462
+ "os": [
463
+ "darwin"
464
+ ]
465
+ },
466
+ "node_modules/@rollup/rollup-freebsd-arm64": {
467
+ "version": "4.52.5",
468
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.5.tgz",
469
+ "integrity": "sha512-QofO7i7JycsYOWxe0GFqhLmF6l1TqBswJMvICnRUjqCx8b47MTo46W8AoeQwiokAx3zVryVnxtBMcGcnX12LvA==",
470
+ "cpu": [
471
+ "arm64"
472
+ ],
473
+ "dev": true,
474
+ "license": "MIT",
475
+ "optional": true,
476
+ "os": [
477
+ "freebsd"
478
+ ]
479
+ },
480
+ "node_modules/@rollup/rollup-freebsd-x64": {
481
+ "version": "4.52.5",
482
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.5.tgz",
483
+ "integrity": "sha512-jr21b/99ew8ujZubPo9skbrItHEIE50WdV86cdSoRkKtmWa+DDr6fu2c/xyRT0F/WazZpam6kk7IHBerSL7LDQ==",
484
+ "cpu": [
485
+ "x64"
486
+ ],
487
+ "dev": true,
488
+ "license": "MIT",
489
+ "optional": true,
490
+ "os": [
491
+ "freebsd"
492
+ ]
493
+ },
494
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
495
+ "version": "4.52.5",
496
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.5.tgz",
497
+ "integrity": "sha512-PsNAbcyv9CcecAUagQefwX8fQn9LQ4nZkpDboBOttmyffnInRy8R8dSg6hxxl2Re5QhHBf6FYIDhIj5v982ATQ==",
498
+ "cpu": [
499
+ "arm"
500
+ ],
501
+ "dev": true,
502
+ "license": "MIT",
503
+ "optional": true,
504
+ "os": [
505
+ "linux"
506
+ ]
507
+ },
508
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
509
+ "version": "4.52.5",
510
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.5.tgz",
511
+ "integrity": "sha512-Fw4tysRutyQc/wwkmcyoqFtJhh0u31K+Q6jYjeicsGJJ7bbEq8LwPWV/w0cnzOqR2m694/Af6hpFayLJZkG2VQ==",
512
+ "cpu": [
513
+ "arm"
514
+ ],
515
+ "dev": true,
516
+ "license": "MIT",
517
+ "optional": true,
518
+ "os": [
519
+ "linux"
520
+ ]
521
+ },
522
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
523
+ "version": "4.52.5",
524
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.5.tgz",
525
+ "integrity": "sha512-a+3wVnAYdQClOTlyapKmyI6BLPAFYs0JM8HRpgYZQO02rMR09ZcV9LbQB+NL6sljzG38869YqThrRnfPMCDtZg==",
526
+ "cpu": [
527
+ "arm64"
528
+ ],
529
+ "dev": true,
530
+ "license": "MIT",
531
+ "optional": true,
532
+ "os": [
533
+ "linux"
534
+ ]
535
+ },
536
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
537
+ "version": "4.52.5",
538
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.5.tgz",
539
+ "integrity": "sha512-AvttBOMwO9Pcuuf7m9PkC1PUIKsfaAJ4AYhy944qeTJgQOqJYJ9oVl2nYgY7Rk0mkbsuOpCAYSs6wLYB2Xiw0Q==",
540
+ "cpu": [
541
+ "arm64"
542
+ ],
543
+ "dev": true,
544
+ "license": "MIT",
545
+ "optional": true,
546
+ "os": [
547
+ "linux"
548
+ ]
549
+ },
550
+ "node_modules/@rollup/rollup-linux-loong64-gnu": {
551
+ "version": "4.52.5",
552
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.5.tgz",
553
+ "integrity": "sha512-DkDk8pmXQV2wVrF6oq5tONK6UHLz/XcEVow4JTTerdeV1uqPeHxwcg7aFsfnSm9L+OO8WJsWotKM2JJPMWrQtA==",
554
+ "cpu": [
555
+ "loong64"
556
+ ],
557
+ "dev": true,
558
+ "license": "MIT",
559
+ "optional": true,
560
+ "os": [
561
+ "linux"
562
+ ]
563
+ },
564
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
565
+ "version": "4.52.5",
566
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.5.tgz",
567
+ "integrity": "sha512-W/b9ZN/U9+hPQVvlGwjzi+Wy4xdoH2I8EjaCkMvzpI7wJUs8sWJ03Rq96jRnHkSrcHTpQe8h5Tg3ZzUPGauvAw==",
568
+ "cpu": [
569
+ "ppc64"
570
+ ],
571
+ "dev": true,
572
+ "license": "MIT",
573
+ "optional": true,
574
+ "os": [
575
+ "linux"
576
+ ]
577
+ },
578
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
579
+ "version": "4.52.5",
580
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.5.tgz",
581
+ "integrity": "sha512-sjQLr9BW7R/ZiXnQiWPkErNfLMkkWIoCz7YMn27HldKsADEKa5WYdobaa1hmN6slu9oWQbB6/jFpJ+P2IkVrmw==",
582
+ "cpu": [
583
+ "riscv64"
584
+ ],
585
+ "dev": true,
586
+ "license": "MIT",
587
+ "optional": true,
588
+ "os": [
589
+ "linux"
590
+ ]
591
+ },
592
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
593
+ "version": "4.52.5",
594
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.5.tgz",
595
+ "integrity": "sha512-hq3jU/kGyjXWTvAh2awn8oHroCbrPm8JqM7RUpKjalIRWWXE01CQOf/tUNWNHjmbMHg/hmNCwc/Pz3k1T/j/Lg==",
596
+ "cpu": [
597
+ "riscv64"
598
+ ],
599
+ "dev": true,
600
+ "license": "MIT",
601
+ "optional": true,
602
+ "os": [
603
+ "linux"
604
+ ]
605
+ },
606
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
607
+ "version": "4.52.5",
608
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.5.tgz",
609
+ "integrity": "sha512-gn8kHOrku8D4NGHMK1Y7NA7INQTRdVOntt1OCYypZPRt6skGbddska44K8iocdpxHTMMNui5oH4elPH4QOLrFQ==",
610
+ "cpu": [
611
+ "s390x"
612
+ ],
613
+ "dev": true,
614
+ "license": "MIT",
615
+ "optional": true,
616
+ "os": [
617
+ "linux"
618
+ ]
619
+ },
620
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
621
+ "version": "4.52.5",
622
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.5.tgz",
623
+ "integrity": "sha512-hXGLYpdhiNElzN770+H2nlx+jRog8TyynpTVzdlc6bndktjKWyZyiCsuDAlpd+j+W+WNqfcyAWz9HxxIGfZm1Q==",
624
+ "cpu": [
625
+ "x64"
626
+ ],
627
+ "dev": true,
628
+ "license": "MIT",
629
+ "optional": true,
630
+ "os": [
631
+ "linux"
632
+ ]
633
+ },
634
+ "node_modules/@rollup/rollup-linux-x64-musl": {
635
+ "version": "4.52.5",
636
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.5.tgz",
637
+ "integrity": "sha512-arCGIcuNKjBoKAXD+y7XomR9gY6Mw7HnFBv5Rw7wQRvwYLR7gBAgV7Mb2QTyjXfTveBNFAtPt46/36vV9STLNg==",
638
+ "cpu": [
639
+ "x64"
640
+ ],
641
+ "dev": true,
642
+ "license": "MIT",
643
+ "optional": true,
644
+ "os": [
645
+ "linux"
646
+ ]
647
+ },
648
+ "node_modules/@rollup/rollup-openharmony-arm64": {
649
+ "version": "4.52.5",
650
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.5.tgz",
651
+ "integrity": "sha512-QoFqB6+/9Rly/RiPjaomPLmR/13cgkIGfA40LHly9zcH1S0bN2HVFYk3a1eAyHQyjs3ZJYlXvIGtcCs5tko9Cw==",
652
+ "cpu": [
653
+ "arm64"
654
+ ],
655
+ "dev": true,
656
+ "license": "MIT",
657
+ "optional": true,
658
+ "os": [
659
+ "openharmony"
660
+ ]
661
+ },
662
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
663
+ "version": "4.52.5",
664
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.5.tgz",
665
+ "integrity": "sha512-w0cDWVR6MlTstla1cIfOGyl8+qb93FlAVutcor14Gf5Md5ap5ySfQ7R9S/NjNaMLSFdUnKGEasmVnu3lCMqB7w==",
666
+ "cpu": [
667
+ "arm64"
668
+ ],
669
+ "dev": true,
670
+ "license": "MIT",
671
+ "optional": true,
672
+ "os": [
673
+ "win32"
674
+ ]
675
+ },
676
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
677
+ "version": "4.52.5",
678
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.5.tgz",
679
+ "integrity": "sha512-Aufdpzp7DpOTULJCuvzqcItSGDH73pF3ko/f+ckJhxQyHtp67rHw3HMNxoIdDMUITJESNE6a8uh4Lo4SLouOUg==",
680
+ "cpu": [
681
+ "ia32"
682
+ ],
683
+ "dev": true,
684
+ "license": "MIT",
685
+ "optional": true,
686
+ "os": [
687
+ "win32"
688
+ ]
689
+ },
690
+ "node_modules/@rollup/rollup-win32-x64-gnu": {
691
+ "version": "4.52.5",
692
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.5.tgz",
693
+ "integrity": "sha512-UGBUGPFp1vkj6p8wCRraqNhqwX/4kNQPS57BCFc8wYh0g94iVIW33wJtQAx3G7vrjjNtRaxiMUylM0ktp/TRSQ==",
694
+ "cpu": [
695
+ "x64"
696
+ ],
697
+ "dev": true,
698
+ "license": "MIT",
699
+ "optional": true,
700
+ "os": [
701
+ "win32"
702
+ ]
703
+ },
704
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
705
+ "version": "4.52.5",
706
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.5.tgz",
707
+ "integrity": "sha512-TAcgQh2sSkykPRWLrdyy2AiceMckNf5loITqXxFI5VuQjS5tSuw3WlwdN8qv8vzjLAUTvYaH/mVjSFpbkFbpTg==",
708
+ "cpu": [
709
+ "x64"
710
+ ],
711
+ "dev": true,
712
+ "license": "MIT",
713
+ "optional": true,
714
+ "os": [
715
+ "win32"
716
+ ]
717
+ },
718
+ "node_modules/@types/estree": {
719
+ "version": "1.0.8",
720
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
721
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
722
+ "dev": true,
723
+ "license": "MIT"
724
+ },
725
+ "node_modules/esbuild": {
726
+ "version": "0.21.5",
727
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz",
728
+ "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==",
729
+ "dev": true,
730
+ "hasInstallScript": true,
731
+ "license": "MIT",
732
+ "bin": {
733
+ "esbuild": "bin/esbuild"
734
+ },
735
+ "engines": {
736
+ "node": ">=12"
737
+ },
738
+ "optionalDependencies": {
739
+ "@esbuild/aix-ppc64": "0.21.5",
740
+ "@esbuild/android-arm": "0.21.5",
741
+ "@esbuild/android-arm64": "0.21.5",
742
+ "@esbuild/android-x64": "0.21.5",
743
+ "@esbuild/darwin-arm64": "0.21.5",
744
+ "@esbuild/darwin-x64": "0.21.5",
745
+ "@esbuild/freebsd-arm64": "0.21.5",
746
+ "@esbuild/freebsd-x64": "0.21.5",
747
+ "@esbuild/linux-arm": "0.21.5",
748
+ "@esbuild/linux-arm64": "0.21.5",
749
+ "@esbuild/linux-ia32": "0.21.5",
750
+ "@esbuild/linux-loong64": "0.21.5",
751
+ "@esbuild/linux-mips64el": "0.21.5",
752
+ "@esbuild/linux-ppc64": "0.21.5",
753
+ "@esbuild/linux-riscv64": "0.21.5",
754
+ "@esbuild/linux-s390x": "0.21.5",
755
+ "@esbuild/linux-x64": "0.21.5",
756
+ "@esbuild/netbsd-x64": "0.21.5",
757
+ "@esbuild/openbsd-x64": "0.21.5",
758
+ "@esbuild/sunos-x64": "0.21.5",
759
+ "@esbuild/win32-arm64": "0.21.5",
760
+ "@esbuild/win32-ia32": "0.21.5",
761
+ "@esbuild/win32-x64": "0.21.5"
762
+ }
763
+ },
764
+ "node_modules/fsevents": {
765
+ "version": "2.3.3",
766
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
767
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
768
+ "dev": true,
769
+ "hasInstallScript": true,
770
+ "license": "MIT",
771
+ "optional": true,
772
+ "os": [
773
+ "darwin"
774
+ ],
775
+ "engines": {
776
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
777
+ }
778
+ },
779
+ "node_modules/js-tokens": {
780
+ "version": "4.0.0",
781
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
782
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
783
+ "license": "MIT"
784
+ },
785
+ "node_modules/loose-envify": {
786
+ "version": "1.4.0",
787
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
788
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
789
+ "license": "MIT",
790
+ "dependencies": {
791
+ "js-tokens": "^3.0.0 || ^4.0.0"
792
+ },
793
+ "bin": {
794
+ "loose-envify": "cli.js"
795
+ }
796
+ },
797
+ "node_modules/nanoid": {
798
+ "version": "3.3.11",
799
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
800
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
801
+ "dev": true,
802
+ "funding": [
803
+ {
804
+ "type": "github",
805
+ "url": "https://github.com/sponsors/ai"
806
+ }
807
+ ],
808
+ "license": "MIT",
809
+ "bin": {
810
+ "nanoid": "bin/nanoid.cjs"
811
+ },
812
+ "engines": {
813
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
814
+ }
815
+ },
816
+ "node_modules/picocolors": {
817
+ "version": "1.1.1",
818
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
819
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
820
+ "dev": true,
821
+ "license": "ISC"
822
+ },
823
+ "node_modules/postcss": {
824
+ "version": "8.5.6",
825
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
826
+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
827
+ "dev": true,
828
+ "funding": [
829
+ {
830
+ "type": "opencollective",
831
+ "url": "https://opencollective.com/postcss/"
832
+ },
833
+ {
834
+ "type": "tidelift",
835
+ "url": "https://tidelift.com/funding/github/npm/postcss"
836
+ },
837
+ {
838
+ "type": "github",
839
+ "url": "https://github.com/sponsors/ai"
840
+ }
841
+ ],
842
+ "license": "MIT",
843
+ "dependencies": {
844
+ "nanoid": "^3.3.11",
845
+ "picocolors": "^1.1.1",
846
+ "source-map-js": "^1.2.1"
847
+ },
848
+ "engines": {
849
+ "node": "^10 || ^12 || >=14"
850
+ }
851
+ },
852
+ "node_modules/react": {
853
+ "version": "18.3.1",
854
+ "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
855
+ "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
856
+ "license": "MIT",
857
+ "dependencies": {
858
+ "loose-envify": "^1.1.0"
859
+ },
860
+ "engines": {
861
+ "node": ">=0.10.0"
862
+ }
863
+ },
864
+ "node_modules/react-dom": {
865
+ "version": "18.3.1",
866
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
867
+ "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
868
+ "license": "MIT",
869
+ "dependencies": {
870
+ "loose-envify": "^1.1.0",
871
+ "scheduler": "^0.23.2"
872
+ },
873
+ "peerDependencies": {
874
+ "react": "^18.3.1"
875
+ }
876
+ },
877
+ "node_modules/rollup": {
878
+ "version": "4.52.5",
879
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.52.5.tgz",
880
+ "integrity": "sha512-3GuObel8h7Kqdjt0gxkEzaifHTqLVW56Y/bjN7PSQtkKr0w3V/QYSdt6QWYtd7A1xUtYQigtdUfgj1RvWVtorw==",
881
+ "dev": true,
882
+ "license": "MIT",
883
+ "dependencies": {
884
+ "@types/estree": "1.0.8"
885
+ },
886
+ "bin": {
887
+ "rollup": "dist/bin/rollup"
888
+ },
889
+ "engines": {
890
+ "node": ">=18.0.0",
891
+ "npm": ">=8.0.0"
892
+ },
893
+ "optionalDependencies": {
894
+ "@rollup/rollup-android-arm-eabi": "4.52.5",
895
+ "@rollup/rollup-android-arm64": "4.52.5",
896
+ "@rollup/rollup-darwin-arm64": "4.52.5",
897
+ "@rollup/rollup-darwin-x64": "4.52.5",
898
+ "@rollup/rollup-freebsd-arm64": "4.52.5",
899
+ "@rollup/rollup-freebsd-x64": "4.52.5",
900
+ "@rollup/rollup-linux-arm-gnueabihf": "4.52.5",
901
+ "@rollup/rollup-linux-arm-musleabihf": "4.52.5",
902
+ "@rollup/rollup-linux-arm64-gnu": "4.52.5",
903
+ "@rollup/rollup-linux-arm64-musl": "4.52.5",
904
+ "@rollup/rollup-linux-loong64-gnu": "4.52.5",
905
+ "@rollup/rollup-linux-ppc64-gnu": "4.52.5",
906
+ "@rollup/rollup-linux-riscv64-gnu": "4.52.5",
907
+ "@rollup/rollup-linux-riscv64-musl": "4.52.5",
908
+ "@rollup/rollup-linux-s390x-gnu": "4.52.5",
909
+ "@rollup/rollup-linux-x64-gnu": "4.52.5",
910
+ "@rollup/rollup-linux-x64-musl": "4.52.5",
911
+ "@rollup/rollup-openharmony-arm64": "4.52.5",
912
+ "@rollup/rollup-win32-arm64-msvc": "4.52.5",
913
+ "@rollup/rollup-win32-ia32-msvc": "4.52.5",
914
+ "@rollup/rollup-win32-x64-gnu": "4.52.5",
915
+ "@rollup/rollup-win32-x64-msvc": "4.52.5",
916
+ "fsevents": "~2.3.2"
917
+ }
918
+ },
919
+ "node_modules/scheduler": {
920
+ "version": "0.23.2",
921
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
922
+ "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
923
+ "license": "MIT",
924
+ "dependencies": {
925
+ "loose-envify": "^1.1.0"
926
+ }
927
+ },
928
+ "node_modules/source-map-js": {
929
+ "version": "1.2.1",
930
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
931
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
932
+ "dev": true,
933
+ "license": "BSD-3-Clause",
934
+ "engines": {
935
+ "node": ">=0.10.0"
936
+ }
937
+ },
938
+ "node_modules/vite": {
939
+ "version": "5.4.21",
940
+ "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz",
941
+ "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==",
942
+ "dev": true,
943
+ "license": "MIT",
944
+ "dependencies": {
945
+ "esbuild": "^0.21.3",
946
+ "postcss": "^8.4.43",
947
+ "rollup": "^4.20.0"
948
+ },
949
+ "bin": {
950
+ "vite": "bin/vite.js"
951
+ },
952
+ "engines": {
953
+ "node": "^18.0.0 || >=20.0.0"
954
+ },
955
+ "funding": {
956
+ "url": "https://github.com/vitejs/vite?sponsor=1"
957
+ },
958
+ "optionalDependencies": {
959
+ "fsevents": "~2.3.3"
960
+ },
961
+ "peerDependencies": {
962
+ "@types/node": "^18.0.0 || >=20.0.0",
963
+ "less": "*",
964
+ "lightningcss": "^1.21.0",
965
+ "sass": "*",
966
+ "sass-embedded": "*",
967
+ "stylus": "*",
968
+ "sugarss": "*",
969
+ "terser": "^5.4.0"
970
+ },
971
+ "peerDependenciesMeta": {
972
+ "@types/node": {
973
+ "optional": true
974
+ },
975
+ "less": {
976
+ "optional": true
977
+ },
978
+ "lightningcss": {
979
+ "optional": true
980
+ },
981
+ "sass": {
982
+ "optional": true
983
+ },
984
+ "sass-embedded": {
985
+ "optional": true
986
+ },
987
+ "stylus": {
988
+ "optional": true
989
+ },
990
+ "sugarss": {
991
+ "optional": true
992
+ },
993
+ "terser": {
994
+ "optional": true
995
+ }
996
+ }
997
+ }
998
+ }
999
+ }