-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pnpm-lock.yaml
7524 lines (6703 loc) · 337 KB
/
pnpm-lock.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
lockfileVersion: '6.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
dependencies:
'@vercel/analytics':
specifier: ^1.3.1
version: 1.4.1(next@15.1.0)(react@18.3.1)
'@vercel/speed-insights':
specifier: ^1.0.12
version: 1.1.0(next@15.1.0)(react@18.3.1)
'@yamada-ui/carousel':
specifier: ^2.1.8
version: 2.1.8(@types/react@18.3.16)(react-dom@18.3.1)(react@18.3.1)
'@yamada-ui/lucide':
specifier: ^1.10.1
version: 1.10.1(@types/react@18.3.16)(react-dom@18.3.1)(react@18.3.1)
'@yamada-ui/react':
specifier: ^1.7.2
version: 1.7.2(@emotion/react@11.14.0)(@emotion/styled@11.14.0)(@types/react@18.3.16)(motion@11.13.5)(react-dom@18.3.1)(react@18.3.1)
color-blind:
specifier: ^0.1.3
version: 0.1.3
color-convert:
specifier: ^2.0.1
version: 2.0.1
color2k:
specifier: ^2.0.3
version: 2.0.3
match-sorter:
specifier: ^8.0.0
version: 8.0.0
nearest-color:
specifier: ^0.4.4
version: 0.4.4
next:
specifier: ^15.1.0
version: 15.1.0(react-dom@18.3.1)(react@18.3.1)
next-seo:
specifier: ^6.6.0
version: 6.6.0(next@15.1.0)(react-dom@18.3.1)(react@18.3.1)
react:
specifier: ^18.3.1
version: 18.3.1
react-dom:
specifier: ^18.3.1
version: 18.3.1(react@18.3.1)
react-remove-scroll:
specifier: ^2.6.0
version: 2.6.0(@types/react@18.3.16)(react@18.3.1)
devDependencies:
'@commitlint/cli':
specifier: ^19.5.0
version: 19.6.0(@types/node@22.10.2)(typescript@5.7.2)
'@commitlint/config-conventional':
specifier: ^19.5.0
version: 19.6.0
'@cspell/eslint-plugin':
specifier: ^8.14.4
version: 8.16.1(eslint@9.16.0)
'@eslint/compat':
specifier: ^1.2.0
version: 1.2.4(eslint@9.16.0)
'@next/eslint-plugin-next':
specifier: ^15.1.0
version: 15.1.0
'@octokit/request-error':
specifier: ^6.1.5
version: 6.1.5
'@octokit/rest':
specifier: ^21.0.2
version: 21.0.2
'@types/color-convert':
specifier: ^2.0.4
version: 2.0.4
'@types/nearest-color':
specifier: ^0.4.1
version: 0.4.1
'@types/node':
specifier: ^22.7.5
version: 22.10.2
'@types/react':
specifier: ^18.3.11
version: 18.3.16
'@types/react-dom':
specifier: ^18.3.0
version: 18.3.5(@types/react@18.3.16)
'@yamada-ui/cli':
specifier: ^1.2.3
version: 1.2.3
chalk:
specifier: ^5.3.0
version: 5.3.0
dotenv:
specifier: ^16.4.5
version: 16.4.7
eslint:
specifier: ^9.12.0
version: 9.16.0(jiti@2.4.1)
eslint-config-prettier:
specifier: ^9.1.0
version: 9.1.0(eslint@9.16.0)
eslint-import-resolver-node:
specifier: ^0.3.9
version: 0.3.9
eslint-import-resolver-typescript:
specifier: ^3.6.3
version: 3.7.0(eslint-plugin-import@2.31.0)(eslint@9.16.0)
eslint-plugin-import:
specifier: ^2.31.0
version: 2.31.0(@typescript-eslint/parser@8.18.0)(eslint-import-resolver-typescript@3.7.0)(eslint@9.16.0)
eslint-plugin-jsx-a11y:
specifier: ^6.10.0
version: 6.10.2(eslint@9.16.0)
eslint-plugin-perfectionist:
specifier: ^3.8.0
version: 3.9.1(eslint@9.16.0)(typescript@5.7.2)
eslint-plugin-prettier:
specifier: ^5.2.1
version: 5.2.1(eslint-config-prettier@9.1.0)(eslint@9.16.0)(prettier@3.4.2)
eslint-plugin-react:
specifier: ^7.37.1
version: 7.37.2(eslint@9.16.0)
eslint-plugin-react-hooks:
specifier: ^5.1.0
version: 5.1.0(eslint@9.16.0)
eslint-plugin-unused-imports:
specifier: ^4.1.4
version: 4.1.4(eslint@9.16.0)
globals:
specifier: ^15.10.0
version: 15.13.0
jiti:
specifier: ^2.3.3
version: 2.4.1
lefthook:
specifier: ^1.7.18
version: 1.9.1
prettier:
specifier: ^3.3.3
version: 3.4.2
rimraf:
specifier: ^6.0.1
version: 6.0.1
tsx:
specifier: ^4.19.1
version: 4.19.2
typescript:
specifier: ^5.6.3
version: 5.7.2
typescript-eslint:
specifier: ^8.7.0
version: 8.18.0(eslint@9.16.0)(typescript@5.7.2)
packages:
/@babel/code-frame@7.26.2:
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==, tarball: https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.25.9
js-tokens: 4.0.0
picocolors: 1.1.1
/@babel/generator@7.26.3:
resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==, tarball: https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/parser': 7.26.3
'@babel/types': 7.26.3
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.1.0
dev: false
/@babel/helper-module-imports@7.25.9:
resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==, tarball: https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/traverse': 7.26.4
'@babel/types': 7.26.3
transitivePeerDependencies:
- supports-color
dev: false
/@babel/helper-string-parser@7.25.9:
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==, tarball: https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz}
engines: {node: '>=6.9.0'}
dev: false
/@babel/helper-validator-identifier@7.25.9:
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==, tarball: https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz}
engines: {node: '>=6.9.0'}
/@babel/parser@7.26.3:
resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==, tarball: https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.26.3
dev: false
/@babel/runtime@7.26.0:
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==, tarball: https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.1
dev: false
/@babel/template@7.25.9:
resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==, tarball: https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.26.2
'@babel/parser': 7.26.3
'@babel/types': 7.26.3
dev: false
/@babel/traverse@7.26.4:
resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==, tarball: https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.26.2
'@babel/generator': 7.26.3
'@babel/parser': 7.26.3
'@babel/template': 7.25.9
'@babel/types': 7.26.3
debug: 4.4.0
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: false
/@babel/types@7.26.3:
resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==, tarball: https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
dev: false
/@clack/core@0.3.5:
resolution: {integrity: sha512-5cfhQNH+1VQ2xLQlmzXMqUoiaH0lRBq9/CLW9lTyMbuKLC3+xEK01tHVvyut++mLOn5urSHmkm6I0Lg9MaJSTQ==, tarball: https://registry.npmjs.org/@clack/core/-/core-0.3.5.tgz}
dependencies:
picocolors: 1.1.1
sisteransi: 1.0.5
dev: true
/@clack/prompts@0.8.2:
resolution: {integrity: sha512-6b9Ab2UiZwJYA9iMyboYyW9yJvAO9V753ZhS+DHKEjZRKAxPPOb7MXXu84lsPFG+vZt6FRFniZ8rXi+zCIw4yQ==, tarball: https://registry.npmjs.org/@clack/prompts/-/prompts-0.8.2.tgz}
dependencies:
'@clack/core': 0.3.5
picocolors: 1.1.1
sisteransi: 1.0.5
dev: true
/@commitlint/cli@19.6.0(@types/node@22.10.2)(typescript@5.7.2):
resolution: {integrity: sha512-v17BgGD9w5KnthaKxXnEg6KLq6DYiAxyiN44TpiRtqyW8NSq+Kx99mkEG8Qo6uu6cI5eMzMojW2muJxjmPnF8w==, tarball: https://registry.npmjs.org/@commitlint/cli/-/cli-19.6.0.tgz}
engines: {node: '>=v18'}
hasBin: true
dependencies:
'@commitlint/format': 19.5.0
'@commitlint/lint': 19.6.0
'@commitlint/load': 19.5.0(@types/node@22.10.2)(typescript@5.7.2)
'@commitlint/read': 19.5.0
'@commitlint/types': 19.5.0
tinyexec: 0.3.1
yargs: 17.7.2
transitivePeerDependencies:
- '@types/node'
- typescript
dev: true
/@commitlint/config-conventional@19.6.0:
resolution: {integrity: sha512-DJT40iMnTYtBtUfw9ApbsLZFke1zKh6llITVJ+x9mtpHD08gsNXaIRqHTmwTZL3dNX5+WoyK7pCN/5zswvkBCQ==, tarball: https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-19.6.0.tgz}
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': 19.5.0
conventional-changelog-conventionalcommits: 7.0.2
dev: true
/@commitlint/config-validator@19.5.0:
resolution: {integrity: sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==, tarball: https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.5.0.tgz}
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': 19.5.0
ajv: 8.17.1
dev: true
/@commitlint/ensure@19.5.0:
resolution: {integrity: sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg==, tarball: https://registry.npmjs.org/@commitlint/ensure/-/ensure-19.5.0.tgz}
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': 19.5.0
lodash.camelcase: 4.3.0
lodash.kebabcase: 4.1.1
lodash.snakecase: 4.1.1
lodash.startcase: 4.4.0
lodash.upperfirst: 4.3.1
dev: true
/@commitlint/execute-rule@19.5.0:
resolution: {integrity: sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==, tarball: https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.5.0.tgz}
engines: {node: '>=v18'}
dev: true
/@commitlint/format@19.5.0:
resolution: {integrity: sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A==, tarball: https://registry.npmjs.org/@commitlint/format/-/format-19.5.0.tgz}
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': 19.5.0
chalk: 5.3.0
dev: true
/@commitlint/is-ignored@19.6.0:
resolution: {integrity: sha512-Ov6iBgxJQFR9koOupDPHvcHU9keFupDgtB3lObdEZDroiG4jj1rzky60fbQozFKVYRTUdrBGICHG0YVmRuAJmw==, tarball: https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-19.6.0.tgz}
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': 19.5.0
semver: 7.6.3
dev: true
/@commitlint/lint@19.6.0:
resolution: {integrity: sha512-LRo7zDkXtcIrpco9RnfhOKeg8PAnE3oDDoalnrVU/EVaKHYBWYL1DlRR7+3AWn0JiBqD8yKOfetVxJGdEtZ0tg==, tarball: https://registry.npmjs.org/@commitlint/lint/-/lint-19.6.0.tgz}
engines: {node: '>=v18'}
dependencies:
'@commitlint/is-ignored': 19.6.0
'@commitlint/parse': 19.5.0
'@commitlint/rules': 19.6.0
'@commitlint/types': 19.5.0
dev: true
/@commitlint/load@19.5.0(@types/node@22.10.2)(typescript@5.7.2):
resolution: {integrity: sha512-INOUhkL/qaKqwcTUvCE8iIUf5XHsEPCLY9looJ/ipzi7jtGhgmtH7OOFiNvwYgH7mA8osUWOUDV8t4E2HAi4xA==, tarball: https://registry.npmjs.org/@commitlint/load/-/load-19.5.0.tgz}
engines: {node: '>=v18'}
dependencies:
'@commitlint/config-validator': 19.5.0
'@commitlint/execute-rule': 19.5.0
'@commitlint/resolve-extends': 19.5.0
'@commitlint/types': 19.5.0
chalk: 5.3.0
cosmiconfig: 9.0.0(typescript@5.7.2)
cosmiconfig-typescript-loader: 5.1.0(@types/node@22.10.2)(cosmiconfig@9.0.0)(typescript@5.7.2)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
transitivePeerDependencies:
- '@types/node'
- typescript
dev: true
/@commitlint/message@19.5.0:
resolution: {integrity: sha512-R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ==, tarball: https://registry.npmjs.org/@commitlint/message/-/message-19.5.0.tgz}
engines: {node: '>=v18'}
dev: true
/@commitlint/parse@19.5.0:
resolution: {integrity: sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw==, tarball: https://registry.npmjs.org/@commitlint/parse/-/parse-19.5.0.tgz}
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': 19.5.0
conventional-changelog-angular: 7.0.0
conventional-commits-parser: 5.0.0
dev: true
/@commitlint/read@19.5.0:
resolution: {integrity: sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ==, tarball: https://registry.npmjs.org/@commitlint/read/-/read-19.5.0.tgz}
engines: {node: '>=v18'}
dependencies:
'@commitlint/top-level': 19.5.0
'@commitlint/types': 19.5.0
git-raw-commits: 4.0.0
minimist: 1.2.8
tinyexec: 0.3.1
dev: true
/@commitlint/resolve-extends@19.5.0:
resolution: {integrity: sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==, tarball: https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.5.0.tgz}
engines: {node: '>=v18'}
dependencies:
'@commitlint/config-validator': 19.5.0
'@commitlint/types': 19.5.0
global-directory: 4.0.1
import-meta-resolve: 4.1.0
lodash.mergewith: 4.6.2
resolve-from: 5.0.0
dev: true
/@commitlint/rules@19.6.0:
resolution: {integrity: sha512-1f2reW7lbrI0X0ozZMesS/WZxgPa4/wi56vFuJENBmed6mWq5KsheN/nxqnl/C23ioxpPO/PL6tXpiiFy5Bhjw==, tarball: https://registry.npmjs.org/@commitlint/rules/-/rules-19.6.0.tgz}
engines: {node: '>=v18'}
dependencies:
'@commitlint/ensure': 19.5.0
'@commitlint/message': 19.5.0
'@commitlint/to-lines': 19.5.0
'@commitlint/types': 19.5.0
dev: true
/@commitlint/to-lines@19.5.0:
resolution: {integrity: sha512-R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ==, tarball: https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-19.5.0.tgz}
engines: {node: '>=v18'}
dev: true
/@commitlint/top-level@19.5.0:
resolution: {integrity: sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng==, tarball: https://registry.npmjs.org/@commitlint/top-level/-/top-level-19.5.0.tgz}
engines: {node: '>=v18'}
dependencies:
find-up: 7.0.0
dev: true
/@commitlint/types@19.5.0:
resolution: {integrity: sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==, tarball: https://registry.npmjs.org/@commitlint/types/-/types-19.5.0.tgz}
engines: {node: '>=v18'}
dependencies:
'@types/conventional-commits-parser': 5.0.1
chalk: 5.3.0
dev: true
/@cspell/cspell-bundled-dicts@8.16.1:
resolution: {integrity: sha512-EkbtoYpmiN9YPfcOoPcMnIrJBZh13mun64jPyyaYhrPPToiU5+CisZ7ZKUBGnqNaatuciMUxwIudhanQJ7Yhnw==, tarball: https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.16.1.tgz}
engines: {node: '>=18'}
dependencies:
'@cspell/dict-ada': 4.0.5
'@cspell/dict-al': 1.0.3
'@cspell/dict-aws': 4.0.7
'@cspell/dict-bash': 4.1.8
'@cspell/dict-companies': 3.1.7
'@cspell/dict-cpp': 6.0.2
'@cspell/dict-cryptocurrencies': 5.0.3
'@cspell/dict-csharp': 4.0.5
'@cspell/dict-css': 4.0.16
'@cspell/dict-dart': 2.2.4
'@cspell/dict-django': 4.1.3
'@cspell/dict-docker': 1.1.11
'@cspell/dict-dotnet': 5.0.8
'@cspell/dict-elixir': 4.0.6
'@cspell/dict-en-common-misspellings': 2.0.7
'@cspell/dict-en-gb': 1.1.33
'@cspell/dict-en_us': 4.3.28
'@cspell/dict-filetypes': 3.0.8
'@cspell/dict-flutter': 1.0.3
'@cspell/dict-fonts': 4.0.3
'@cspell/dict-fsharp': 1.0.4
'@cspell/dict-fullstack': 3.2.3
'@cspell/dict-gaming-terms': 1.0.8
'@cspell/dict-git': 3.0.3
'@cspell/dict-golang': 6.0.17
'@cspell/dict-google': 1.0.4
'@cspell/dict-haskell': 4.0.4
'@cspell/dict-html': 4.0.10
'@cspell/dict-html-symbol-entities': 4.0.3
'@cspell/dict-java': 5.0.10
'@cspell/dict-julia': 1.0.4
'@cspell/dict-k8s': 1.0.9
'@cspell/dict-latex': 4.0.3
'@cspell/dict-lorem-ipsum': 4.0.3
'@cspell/dict-lua': 4.0.6
'@cspell/dict-makefile': 1.0.3
'@cspell/dict-markdown': 2.0.7(@cspell/dict-css@4.0.16)(@cspell/dict-html-symbol-entities@4.0.3)(@cspell/dict-html@4.0.10)(@cspell/dict-typescript@3.1.11)
'@cspell/dict-monkeyc': 1.0.9
'@cspell/dict-node': 5.0.5
'@cspell/dict-npm': 5.1.15
'@cspell/dict-php': 4.0.13
'@cspell/dict-powershell': 5.0.13
'@cspell/dict-public-licenses': 2.0.11
'@cspell/dict-python': 4.2.13
'@cspell/dict-r': 2.0.4
'@cspell/dict-ruby': 5.0.7
'@cspell/dict-rust': 4.0.10
'@cspell/dict-scala': 5.0.6
'@cspell/dict-software-terms': 4.1.18
'@cspell/dict-sql': 2.1.8
'@cspell/dict-svelte': 1.0.5
'@cspell/dict-swift': 2.0.4
'@cspell/dict-terraform': 1.0.6
'@cspell/dict-typescript': 3.1.11
'@cspell/dict-vue': 3.0.3
dev: true
/@cspell/cspell-pipe@8.16.1:
resolution: {integrity: sha512-6N+QZ3y65JRgGrQhZHmaBHESR+nC0J8nySGaYKclit8yk3jLZ/ORw9aoSGIj+dMPzImkNEDh+C1B1zdV4X8W6A==, tarball: https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-8.16.1.tgz}
engines: {node: '>=18'}
dev: true
/@cspell/cspell-resolver@8.16.1:
resolution: {integrity: sha512-CfVI2JFMwh9/n1QuU9niEONbYCX1XGKqmyCcHQUzAapSqGzbAmFrRFnvyKwNL+mmy1bxli9EZV8f5vBco26f9Q==, tarball: https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-8.16.1.tgz}
engines: {node: '>=18'}
dependencies:
global-directory: 4.0.1
dev: true
/@cspell/cspell-service-bus@8.16.1:
resolution: {integrity: sha512-URaralJKcdHZH/Lr25L28GJo2Ub07adHPPhOL83BvmPyGkboehmz5arjNrgQFwS+IvGjHLdp5uzEJd0xyeHGdw==, tarball: https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-8.16.1.tgz}
engines: {node: '>=18'}
dev: true
/@cspell/cspell-types@8.16.1:
resolution: {integrity: sha512-B8bHlBaDSMDMEq++H8qO9osKUkzWUrP4CgWQyRqlXZ9EOdnJ469Tp1wghcQ7DezII3aXYrHiVKsUYY9VvjkhIg==, tarball: https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-8.16.1.tgz}
engines: {node: '>=18'}
dev: true
/@cspell/dict-ada@4.0.5:
resolution: {integrity: sha512-6/RtZ/a+lhFVmrx/B7bfP7rzC4yjEYe8o74EybXcvu4Oue6J4Ey2WSYj96iuodloj1LWrkNCQyX5h4Pmcj0Iag==, tarball: https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-4.0.5.tgz}
dev: true
/@cspell/dict-al@1.0.3:
resolution: {integrity: sha512-V1HClwlfU/qwSq2Kt+MkqRAsonNu3mxjSCDyGRecdLGIHmh7yeEeaxqRiO/VZ4KP+eVSiSIlbwrb5YNFfxYZbw==, tarball: https://registry.npmjs.org/@cspell/dict-al/-/dict-al-1.0.3.tgz}
dev: true
/@cspell/dict-aws@4.0.7:
resolution: {integrity: sha512-PoaPpa2NXtSkhGIMIKhsJUXB6UbtTt6Ao3x9JdU9kn7fRZkwD4RjHDGqulucIOz7KeEX/dNRafap6oK9xHe4RA==, tarball: https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-4.0.7.tgz}
dev: true
/@cspell/dict-bash@4.1.8:
resolution: {integrity: sha512-I2CM2pTNthQwW069lKcrVxchJGMVQBzru2ygsHCwgidXRnJL/NTjAPOFTxN58Jc1bf7THWghfEDyKX/oyfc0yg==, tarball: https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-4.1.8.tgz}
dev: true
/@cspell/dict-companies@3.1.7:
resolution: {integrity: sha512-ncVs/efuAkP1/tLDhWbXukBjgZ5xOUfe03neHMWsE8zvXXc5+Lw6TX5jaJXZLOoES/f4j4AhRE20jsPCF5pm+A==, tarball: https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.1.7.tgz}
dev: true
/@cspell/dict-cpp@6.0.2:
resolution: {integrity: sha512-yw5eejWvY4bAnc6LUA44m4WsFwlmgPt2uMSnO7QViGMBDuoeopMma4z9XYvs4lSjTi8fIJs/A1YDfM9AVzb8eg==, tarball: https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-6.0.2.tgz}
dev: true
/@cspell/dict-cryptocurrencies@5.0.3:
resolution: {integrity: sha512-bl5q+Mk+T3xOZ12+FG37dB30GDxStza49Rmoax95n37MTLksk9wBo1ICOlPJ6PnDUSyeuv4SIVKgRKMKkJJglA==, tarball: https://registry.npmjs.org/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-5.0.3.tgz}
dev: true
/@cspell/dict-csharp@4.0.5:
resolution: {integrity: sha512-c/sFnNgtRwRJxtC3JHKkyOm+U3/sUrltFeNwml9VsxKBHVmvlg4tk4ar58PdpW9/zTlGUkWi2i85//DN1EsUCA==, tarball: https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-4.0.5.tgz}
dev: true
/@cspell/dict-css@4.0.16:
resolution: {integrity: sha512-70qu7L9z/JR6QLyJPk38fNTKitlIHnfunx0wjpWQUQ8/jGADIhMCrz6hInBjqPNdtGpYm8d1dNFyF8taEkOgrQ==, tarball: https://registry.npmjs.org/@cspell/dict-css/-/dict-css-4.0.16.tgz}
dev: true
/@cspell/dict-dart@2.2.4:
resolution: {integrity: sha512-of/cVuUIZZK/+iqefGln8G3bVpfyN6ZtH+LyLkHMoR5tEj+2vtilGNk9ngwyR8L4lEqbKuzSkOxgfVjsXf5PsQ==, tarball: https://registry.npmjs.org/@cspell/dict-dart/-/dict-dart-2.2.4.tgz}
dev: true
/@cspell/dict-data-science@2.0.5:
resolution: {integrity: sha512-nNSILXmhSJox9/QoXICPQgm8q5PbiSQP4afpbkBqPi/u/b3K9MbNH5HvOOa6230gxcGdbZ9Argl2hY/U8siBlg==, tarball: https://registry.npmjs.org/@cspell/dict-data-science/-/dict-data-science-2.0.5.tgz}
dev: true
/@cspell/dict-django@4.1.3:
resolution: {integrity: sha512-yBspeL3roJlO0a1vKKNaWABURuHdHZ9b1L8d3AukX0AsBy9snSggc8xCavPmSzNfeMDXbH+1lgQiYBd3IW03fg==, tarball: https://registry.npmjs.org/@cspell/dict-django/-/dict-django-4.1.3.tgz}
dev: true
/@cspell/dict-docker@1.1.11:
resolution: {integrity: sha512-s0Yhb16/R+UT1y727ekbR/itWQF3Qz275DR1ahOa66wYtPjHUXmhM3B/LT3aPaX+hD6AWmK23v57SuyfYHUjsw==, tarball: https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.11.tgz}
dev: true
/@cspell/dict-dotnet@5.0.8:
resolution: {integrity: sha512-MD8CmMgMEdJAIPl2Py3iqrx3B708MbCIXAuOeZ0Mzzb8YmLmiisY7QEYSZPg08D7xuwARycP0Ki+bb0GAkFSqg==, tarball: https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-5.0.8.tgz}
dev: true
/@cspell/dict-elixir@4.0.6:
resolution: {integrity: sha512-TfqSTxMHZ2jhiqnXlVKM0bUADtCvwKQv2XZL/DI0rx3doG8mEMS8SGPOmiyyGkHpR/pGOq18AFH3BEm4lViHIw==, tarball: https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-4.0.6.tgz}
dev: true
/@cspell/dict-en-common-misspellings@2.0.7:
resolution: {integrity: sha512-qNFo3G4wyabcwnM+hDrMYKN9vNVg/k9QkhqSlSst6pULjdvPyPs1mqz1689xO/v9t8e6sR4IKc3CgUXDMTYOpA==, tarball: https://registry.npmjs.org/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-2.0.7.tgz}
dev: true
/@cspell/dict-en-gb@1.1.33:
resolution: {integrity: sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==, tarball: https://registry.npmjs.org/@cspell/dict-en-gb/-/dict-en-gb-1.1.33.tgz}
dev: true
/@cspell/dict-en_us@4.3.28:
resolution: {integrity: sha512-BN1PME7cOl7DXRQJ92pEd1f0Xk5sqjcDfThDGkKcsgwbSOY7KnTc/czBW6Pr3WXIchIm6cT12KEfjNqx7U7Rrw==, tarball: https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.28.tgz}
dev: true
/@cspell/dict-filetypes@3.0.8:
resolution: {integrity: sha512-D3N8sm/iptzfVwsib/jvpX+K/++rM8SRpLDFUaM4jxm8EyGmSIYRbKZvdIv5BkAWmMlTWoRqlLn7Yb1b11jKJg==, tarball: https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-3.0.8.tgz}
dev: true
/@cspell/dict-flutter@1.0.3:
resolution: {integrity: sha512-52C9aUEU22ptpgYh6gQyIdA4MP6NPwzbEqndfgPh3Sra191/kgs7CVqXiO1qbtZa9gnYHUoVApkoxRE7mrXHfg==, tarball: https://registry.npmjs.org/@cspell/dict-flutter/-/dict-flutter-1.0.3.tgz}
dev: true
/@cspell/dict-fonts@4.0.3:
resolution: {integrity: sha512-sPd17kV5qgYXLteuHFPn5mbp/oCHKgitNfsZLFC3W2fWEgZlhg4hK+UGig3KzrYhhvQ8wBnmZrAQm0TFKCKzsA==, tarball: https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-4.0.3.tgz}
dev: true
/@cspell/dict-fsharp@1.0.4:
resolution: {integrity: sha512-G5wk0o1qyHUNi9nVgdE1h5wl5ylq7pcBjX8vhjHcO4XBq20D5eMoXjwqMo/+szKAqzJ+WV3BgAL50akLKrT9Rw==, tarball: https://registry.npmjs.org/@cspell/dict-fsharp/-/dict-fsharp-1.0.4.tgz}
dev: true
/@cspell/dict-fullstack@3.2.3:
resolution: {integrity: sha512-62PbndIyQPH11mAv0PyiyT0vbwD0AXEocPpHlCHzfb5v9SspzCCbzQ/LIBiFmyRa+q5LMW35CnSVu6OXdT+LKg==, tarball: https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.2.3.tgz}
dev: true
/@cspell/dict-gaming-terms@1.0.8:
resolution: {integrity: sha512-7OL0zTl93WFWhhtpXFrtm9uZXItC3ncAs8d0iQDMMFVNU1rBr6raBNxJskxE5wx2Ant12fgI66ZGVagXfN+yfA==, tarball: https://registry.npmjs.org/@cspell/dict-gaming-terms/-/dict-gaming-terms-1.0.8.tgz}
dev: true
/@cspell/dict-git@3.0.3:
resolution: {integrity: sha512-LSxB+psZ0qoj83GkyjeEH/ZViyVsGEF/A6BAo8Nqc0w0HjD2qX/QR4sfA6JHUgQ3Yi/ccxdK7xNIo67L2ScW5A==, tarball: https://registry.npmjs.org/@cspell/dict-git/-/dict-git-3.0.3.tgz}
dev: true
/@cspell/dict-golang@6.0.17:
resolution: {integrity: sha512-uDDLEJ/cHdLiqPw4+5BnmIo2i/TSR+uDvYd6JlBjTmjBKpOCyvUgYRztH7nv5e7virsN5WDiUWah4/ATQGz4Pw==, tarball: https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-6.0.17.tgz}
dev: true
/@cspell/dict-google@1.0.4:
resolution: {integrity: sha512-JThUT9eiguCja1mHHLwYESgxkhk17Gv7P3b1S7ZJzXw86QyVHPrbpVoMpozHk0C9o+Ym764B7gZGKmw9uMGduQ==, tarball: https://registry.npmjs.org/@cspell/dict-google/-/dict-google-1.0.4.tgz}
dev: true
/@cspell/dict-haskell@4.0.4:
resolution: {integrity: sha512-EwQsedEEnND/vY6tqRfg9y7tsnZdxNqOxLXSXTsFA6JRhUlr8Qs88iUUAfsUzWc4nNmmzQH2UbtT25ooG9x4nA==, tarball: https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-4.0.4.tgz}
dev: true
/@cspell/dict-html-symbol-entities@4.0.3:
resolution: {integrity: sha512-aABXX7dMLNFdSE8aY844X4+hvfK7977sOWgZXo4MTGAmOzR8524fjbJPswIBK7GaD3+SgFZ2yP2o0CFvXDGF+A==, tarball: https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-4.0.3.tgz}
dev: true
/@cspell/dict-html@4.0.10:
resolution: {integrity: sha512-I9uRAcdtHbh0wEtYZlgF0TTcgH0xaw1B54G2CW+tx4vHUwlde/+JBOfIzird4+WcMv4smZOfw+qHf7puFUbI5g==, tarball: https://registry.npmjs.org/@cspell/dict-html/-/dict-html-4.0.10.tgz}
dev: true
/@cspell/dict-java@5.0.10:
resolution: {integrity: sha512-pVNcOnmoGiNL8GSVq4WbX/Vs2FGS0Nej+1aEeGuUY9CU14X8yAVCG+oih5ZoLt1jaR8YfR8byUF8wdp4qG4XIw==, tarball: https://registry.npmjs.org/@cspell/dict-java/-/dict-java-5.0.10.tgz}
dev: true
/@cspell/dict-julia@1.0.4:
resolution: {integrity: sha512-bFVgNX35MD3kZRbXbJVzdnN7OuEqmQXGpdOi9jzB40TSgBTlJWA4nxeAKV4CPCZxNRUGnLH0p05T/AD7Aom9/w==, tarball: https://registry.npmjs.org/@cspell/dict-julia/-/dict-julia-1.0.4.tgz}
dev: true
/@cspell/dict-k8s@1.0.9:
resolution: {integrity: sha512-Q7GELSQIzo+BERl2ya/nBEnZeQC+zJP19SN1pI6gqDYraM51uYJacbbcWLYYO2Y+5joDjNt/sd/lJtLaQwoSlA==, tarball: https://registry.npmjs.org/@cspell/dict-k8s/-/dict-k8s-1.0.9.tgz}
dev: true
/@cspell/dict-latex@4.0.3:
resolution: {integrity: sha512-2KXBt9fSpymYHxHfvhUpjUFyzrmN4c4P8mwIzweLyvqntBT3k0YGZJSriOdjfUjwSygrfEwiuPI1EMrvgrOMJw==, tarball: https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-4.0.3.tgz}
dev: true
/@cspell/dict-lorem-ipsum@4.0.3:
resolution: {integrity: sha512-WFpDi/PDYHXft6p0eCXuYnn7mzMEQLVeqpO+wHSUd+kz5ADusZ4cpslAA4wUZJstF1/1kMCQCZM6HLZic9bT8A==, tarball: https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-4.0.3.tgz}
dev: true
/@cspell/dict-lua@4.0.6:
resolution: {integrity: sha512-Jwvh1jmAd9b+SP9e1GkS2ACbqKKRo9E1f9GdjF/ijmooZuHU0hPyqvnhZzUAxO1egbnNjxS/J2T6iUtjAUK2KQ==, tarball: https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-4.0.6.tgz}
dev: true
/@cspell/dict-makefile@1.0.3:
resolution: {integrity: sha512-R3U0DSpvTs6qdqfyBATnePj9Q/pypkje0Nj26mQJ8TOBQutCRAJbr2ZFAeDjgRx5EAJU/+8txiyVF97fbVRViw==, tarball: https://registry.npmjs.org/@cspell/dict-makefile/-/dict-makefile-1.0.3.tgz}
dev: true
/@cspell/dict-markdown@2.0.7(@cspell/dict-css@4.0.16)(@cspell/dict-html-symbol-entities@4.0.3)(@cspell/dict-html@4.0.10)(@cspell/dict-typescript@3.1.11):
resolution: {integrity: sha512-F9SGsSOokFn976DV4u/1eL4FtKQDSgJHSZ3+haPRU5ki6OEqojxKa8hhj4AUrtNFpmBaJx/WJ4YaEzWqG7hgqg==, tarball: https://registry.npmjs.org/@cspell/dict-markdown/-/dict-markdown-2.0.7.tgz}
peerDependencies:
'@cspell/dict-css': ^4.0.16
'@cspell/dict-html': ^4.0.10
'@cspell/dict-html-symbol-entities': ^4.0.3
'@cspell/dict-typescript': ^3.1.11
dependencies:
'@cspell/dict-css': 4.0.16
'@cspell/dict-html': 4.0.10
'@cspell/dict-html-symbol-entities': 4.0.3
'@cspell/dict-typescript': 3.1.11
dev: true
/@cspell/dict-monkeyc@1.0.9:
resolution: {integrity: sha512-Jvf6g5xlB4+za3ThvenYKREXTEgzx5gMUSzrAxIiPleVG4hmRb/GBSoSjtkGaibN3XxGx5x809gSTYCA/IHCpA==, tarball: https://registry.npmjs.org/@cspell/dict-monkeyc/-/dict-monkeyc-1.0.9.tgz}
dev: true
/@cspell/dict-node@5.0.5:
resolution: {integrity: sha512-7NbCS2E8ZZRZwlLrh2sA0vAk9n1kcTUiRp/Nia8YvKaItGXLfxYqD2rMQ3HpB1kEutal6hQLVic3N2Yi1X7AaA==, tarball: https://registry.npmjs.org/@cspell/dict-node/-/dict-node-5.0.5.tgz}
dev: true
/@cspell/dict-npm@5.1.15:
resolution: {integrity: sha512-95D3A8rs9SYlUQUkK48J0F1W3jOsc63dY/vlzuNHE4nuGU2OM4jtoWvLk0ovhBMHwZikaNNTHaHoJyr+VKu+Yg==, tarball: https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.1.15.tgz}
dev: true
/@cspell/dict-php@4.0.13:
resolution: {integrity: sha512-P6sREMZkhElzz/HhXAjahnICYIqB/HSGp1EhZh+Y6IhvC15AzgtDP8B8VYCIsQof6rPF1SQrFwunxOv8H1e2eg==, tarball: https://registry.npmjs.org/@cspell/dict-php/-/dict-php-4.0.13.tgz}
dev: true
/@cspell/dict-powershell@5.0.13:
resolution: {integrity: sha512-0qdj0XZIPmb77nRTynKidRJKTU0Fl+10jyLbAhFTuBWKMypVY06EaYFnwhsgsws/7nNX8MTEQuewbl9bWFAbsg==, tarball: https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-5.0.13.tgz}
dev: true
/@cspell/dict-public-licenses@2.0.11:
resolution: {integrity: sha512-rR5KjRUSnVKdfs5G+gJ4oIvQvm8+NJ6cHWY2N+GE69/FSGWDOPHxulCzeGnQU/c6WWZMSimG9o49i9r//lUQyA==, tarball: https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.11.tgz}
dev: true
/@cspell/dict-python@4.2.13:
resolution: {integrity: sha512-mZIcmo9qif8LkJ6N/lqTZawcOk2kVTcuWIUOSbMcjyomO0XZ7iWz15TfONyr03Ea/l7o5ULV+MZ4vx76bAUb7w==, tarball: https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.2.13.tgz}
dependencies:
'@cspell/dict-data-science': 2.0.5
dev: true
/@cspell/dict-r@2.0.4:
resolution: {integrity: sha512-cBpRsE/U0d9BRhiNRMLMH1PpWgw+N+1A2jumgt1if9nBGmQw4MUpg2u9I0xlFVhstTIdzXiLXMxP45cABuiUeQ==, tarball: https://registry.npmjs.org/@cspell/dict-r/-/dict-r-2.0.4.tgz}
dev: true
/@cspell/dict-ruby@5.0.7:
resolution: {integrity: sha512-4/d0hcoPzi5Alk0FmcyqlzFW9lQnZh9j07MJzPcyVO62nYJJAGKaPZL2o4qHeCS/od/ctJC5AHRdoUm0ktsw6Q==, tarball: https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-5.0.7.tgz}
dev: true
/@cspell/dict-rust@4.0.10:
resolution: {integrity: sha512-6o5C8566VGTTctgcwfF3Iy7314W0oMlFFSQOadQ0OEdJ9Z9ERX/PDimrzP3LGuOrvhtEFoK8pj+BLnunNwRNrw==, tarball: https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-4.0.10.tgz}
dev: true
/@cspell/dict-scala@5.0.6:
resolution: {integrity: sha512-tl0YWAfjUVb4LyyE4JIMVE8DlLzb1ecHRmIWc4eT6nkyDqQgHKzdHsnusxFEFMVLIQomgSg0Zz6hJ5S1E4W4ww==, tarball: https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-5.0.6.tgz}
dev: true
/@cspell/dict-software-terms@4.1.18:
resolution: {integrity: sha512-QhOQ3qVFr2Y+uDw2SH15klVNU2S07ecFhG+2gpTO/K4Kuaui3INbVrzHOKW41ofP3ghv9y2TkUUtOP5KfddP8A==, tarball: https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-4.1.18.tgz}
dev: true
/@cspell/dict-sql@2.1.8:
resolution: {integrity: sha512-dJRE4JV1qmXTbbGm6WIcg1knmR6K5RXnQxF4XHs5HA3LAjc/zf77F95i5LC+guOGppVF6Hdl66S2UyxT+SAF3A==, tarball: https://registry.npmjs.org/@cspell/dict-sql/-/dict-sql-2.1.8.tgz}
dev: true
/@cspell/dict-svelte@1.0.5:
resolution: {integrity: sha512-sseHlcXOqWE4Ner9sg8KsjxwSJ2yssoJNqFHR9liWVbDV+m7kBiUtn2EB690TihzVsEmDr/0Yxrbb5Bniz70mA==, tarball: https://registry.npmjs.org/@cspell/dict-svelte/-/dict-svelte-1.0.5.tgz}
dev: true
/@cspell/dict-swift@2.0.4:
resolution: {integrity: sha512-CsFF0IFAbRtYNg0yZcdaYbADF5F3DsM8C4wHnZefQy8YcHP/qjAF/GdGfBFBLx+XSthYuBlo2b2XQVdz3cJZBw==, tarball: https://registry.npmjs.org/@cspell/dict-swift/-/dict-swift-2.0.4.tgz}
dev: true
/@cspell/dict-terraform@1.0.6:
resolution: {integrity: sha512-Sqm5vGbXuI9hCFcr4w6xWf4Y25J9SdleE/IqfM6RySPnk8lISEmVdax4k6+Kinv9qaxyvnIbUUN4WFLWcBPQAg==, tarball: https://registry.npmjs.org/@cspell/dict-terraform/-/dict-terraform-1.0.6.tgz}
dev: true
/@cspell/dict-typescript@3.1.11:
resolution: {integrity: sha512-FwvK5sKbwrVpdw0e9+1lVTl8FPoHYvfHRuQRQz2Ql5XkC0gwPPkpoyD1zYImjIyZRoYXk3yp9j8ss4iz7A7zoQ==, tarball: https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-3.1.11.tgz}
dev: true
/@cspell/dict-vue@3.0.3:
resolution: {integrity: sha512-akmYbrgAGumqk1xXALtDJcEcOMYBYMnkjpmGzH13Ozhq1mkPF4VgllFQlm1xYde+BUKNnzMgPEzxrL2qZllgYA==, tarball: https://registry.npmjs.org/@cspell/dict-vue/-/dict-vue-3.0.3.tgz}
dev: true
/@cspell/dynamic-import@8.16.1:
resolution: {integrity: sha512-mEfdeS1kFKpJoDsQ8wW6PxO3+ncYuZCWCASR0trbzZDduzO2RcogMUgzP99obHtYbgXadw94qcQWXB8OYTPSwg==, tarball: https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-8.16.1.tgz}
engines: {node: '>=18.0'}
dependencies:
import-meta-resolve: 4.1.0
dev: true
/@cspell/eslint-plugin@8.16.1(eslint@9.16.0):
resolution: {integrity: sha512-ZC++S56xs+M810U2yCyN06dl2fnw7wIgq9DquMG6R+hVllZGsoUSUK2VTUSaHgSDNypI5PCNkV9guiF9M60vmw==, tarball: https://registry.npmjs.org/@cspell/eslint-plugin/-/eslint-plugin-8.16.1.tgz}
engines: {node: '>=18'}
peerDependencies:
eslint: ^7 || ^8 || ^9
dependencies:
'@cspell/cspell-types': 8.16.1
'@cspell/url': 8.16.1
cspell-lib: 8.16.1
eslint: 9.16.0(jiti@2.4.1)
synckit: 0.9.2
dev: true
/@cspell/filetypes@8.16.1:
resolution: {integrity: sha512-zpbNg3n26muR1jdMbylw5YsaVGyS9LU5Lfy20gU7RygAk6kFyx3Yz4C84EihBGQHy2gVEsEeyCCxk+R8RXuPZA==, tarball: https://registry.npmjs.org/@cspell/filetypes/-/filetypes-8.16.1.tgz}
engines: {node: '>=18'}
dev: true
/@cspell/strong-weak-map@8.16.1:
resolution: {integrity: sha512-jJQS05wg2iUkLKnPR8NEq3LqvqHWKnvUDFoPwaJzYw6ol/O4yi/lv+Me9+XCPrgjpnAz+8APhWkhrR/O71R1Bw==, tarball: https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-8.16.1.tgz}
engines: {node: '>=18'}
dev: true
/@cspell/url@8.16.1:
resolution: {integrity: sha512-kGlr7Wdo4xJpXKal/Gqo3Ll5Is7ptlIlLZOB/hzR6R53Fw4N6SdipTDIeHHqC15p2AXTEG6TSNdhk9dA50LY6w==, tarball: https://registry.npmjs.org/@cspell/url/-/url-8.16.1.tgz}
engines: {node: '>=18.0'}
dev: true
/@emnapi/runtime@1.3.1:
resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==, tarball: https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz}
requiresBuild: true
dependencies:
tslib: 2.8.1
dev: false
optional: true
/@emotion/babel-plugin@11.13.5:
resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==, tarball: https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.13.5.tgz}
dependencies:
'@babel/helper-module-imports': 7.25.9
'@babel/runtime': 7.26.0
'@emotion/hash': 0.9.2
'@emotion/memoize': 0.9.0
'@emotion/serialize': 1.3.3
babel-plugin-macros: 3.1.0
convert-source-map: 1.9.0
escape-string-regexp: 4.0.0
find-root: 1.1.0
source-map: 0.5.7
stylis: 4.2.0
transitivePeerDependencies:
- supports-color
dev: false
/@emotion/cache@11.14.0:
resolution: {integrity: sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==, tarball: https://registry.npmjs.org/@emotion/cache/-/cache-11.14.0.tgz}
dependencies:
'@emotion/memoize': 0.9.0
'@emotion/sheet': 1.4.0
'@emotion/utils': 1.4.2
'@emotion/weak-memoize': 0.4.0
stylis: 4.2.0
dev: false
/@emotion/css@11.11.0:
resolution: {integrity: sha512-m4g6nKzZyiKyJ3WOfdwrBdcujVcpaScIWHAnyNKPm/A/xJKwfXPfQAbEVi1kgexWTDakmg+r2aDj0KvnMTo4oQ==, tarball: https://registry.npmjs.org/@emotion/css/-/css-11.11.0.tgz}
dependencies:
'@emotion/babel-plugin': 11.13.5
'@emotion/cache': 11.14.0
'@emotion/serialize': 1.3.3
'@emotion/sheet': 1.4.0
'@emotion/utils': 1.4.2
transitivePeerDependencies:
- supports-color
dev: false
/@emotion/hash@0.9.2:
resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==, tarball: https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz}
dev: false
/@emotion/is-prop-valid@1.3.1:
resolution: {integrity: sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==, tarball: https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.3.1.tgz}
dependencies:
'@emotion/memoize': 0.9.0
dev: false
/@emotion/memoize@0.9.0:
resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==, tarball: https://registry.npmjs.org/@emotion/memoize/-/memoize-0.9.0.tgz}
dev: false
/@emotion/react@11.11.0(@types/react@18.3.16)(react@18.3.1):
resolution: {integrity: sha512-ZSK3ZJsNkwfjT3JpDAWJZlrGD81Z3ytNDsxw1LKq1o+xkmO5pnWfr6gmCC8gHEFf3nSSX/09YrG67jybNPxSUw==, tarball: https://registry.npmjs.org/@emotion/react/-/react-11.11.0.tgz}
peerDependencies:
'@types/react': '*'
react: '>=16.8.0'
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
'@babel/runtime': 7.26.0
'@emotion/babel-plugin': 11.13.5
'@emotion/cache': 11.14.0
'@emotion/serialize': 1.3.3
'@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@18.3.1)
'@emotion/utils': 1.4.2
'@emotion/weak-memoize': 0.3.1
'@types/react': 18.3.16
hoist-non-react-statics: 3.3.2
react: 18.3.1
transitivePeerDependencies:
- supports-color
dev: false
/@emotion/react@11.14.0(@types/react@18.3.16)(react@18.3.1):
resolution: {integrity: sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==, tarball: https://registry.npmjs.org/@emotion/react/-/react-11.14.0.tgz}
peerDependencies:
'@types/react': '*'
react: '>=16.8.0'
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
'@babel/runtime': 7.26.0
'@emotion/babel-plugin': 11.13.5
'@emotion/cache': 11.14.0
'@emotion/serialize': 1.3.3
'@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@18.3.1)
'@emotion/utils': 1.4.2
'@emotion/weak-memoize': 0.4.0
'@types/react': 18.3.16
hoist-non-react-statics: 3.3.2
react: 18.3.1
transitivePeerDependencies:
- supports-color
dev: false
/@emotion/serialize@1.3.3:
resolution: {integrity: sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==, tarball: https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.3.tgz}
dependencies:
'@emotion/hash': 0.9.2
'@emotion/memoize': 0.9.0
'@emotion/unitless': 0.10.0
'@emotion/utils': 1.4.2
csstype: 3.1.3
dev: false
/@emotion/sheet@1.4.0:
resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==, tarball: https://registry.npmjs.org/@emotion/sheet/-/sheet-1.4.0.tgz}
dev: false
/@emotion/styled@11.11.0(@emotion/react@11.11.0)(@types/react@18.3.16)(react@18.3.1):
resolution: {integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==, tarball: https://registry.npmjs.org/@emotion/styled/-/styled-11.11.0.tgz}
peerDependencies:
'@emotion/react': ^11.0.0-rc.0
'@types/react': '*'
react: '>=16.8.0'
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
'@babel/runtime': 7.26.0
'@emotion/babel-plugin': 11.13.5
'@emotion/is-prop-valid': 1.3.1
'@emotion/react': 11.11.0(@types/react@18.3.16)(react@18.3.1)
'@emotion/serialize': 1.3.3
'@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@18.3.1)
'@emotion/utils': 1.4.2
'@types/react': 18.3.16
react: 18.3.1
transitivePeerDependencies:
- supports-color
dev: false
/@emotion/styled@11.14.0(@emotion/react@11.14.0)(@types/react@18.3.16)(react@18.3.1):
resolution: {integrity: sha512-XxfOnXFffatap2IyCeJyNov3kiDQWoR08gPUQxvbL7fxKryGBKUZUkG6Hz48DZwVrJSVh9sJboyV1Ds4OW6SgA==, tarball: https://registry.npmjs.org/@emotion/styled/-/styled-11.14.0.tgz}
peerDependencies:
'@emotion/react': ^11.0.0-rc.0
'@types/react': '*'
react: '>=16.8.0'
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
'@babel/runtime': 7.26.0
'@emotion/babel-plugin': 11.13.5
'@emotion/is-prop-valid': 1.3.1
'@emotion/react': 11.14.0(@types/react@18.3.16)(react@18.3.1)
'@emotion/serialize': 1.3.3
'@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@18.3.1)
'@emotion/utils': 1.4.2
'@types/react': 18.3.16
react: 18.3.1
transitivePeerDependencies:
- supports-color
dev: false
/@emotion/unitless@0.10.0:
resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==, tarball: https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz}
dev: false
/@emotion/use-insertion-effect-with-fallbacks@1.2.0(react@18.3.1):
resolution: {integrity: sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==, tarball: https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.2.0.tgz}
peerDependencies:
react: '>=16.8.0'
dependencies:
react: 18.3.1
dev: false
/@emotion/utils@1.4.2:
resolution: {integrity: sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==, tarball: https://registry.npmjs.org/@emotion/utils/-/utils-1.4.2.tgz}
dev: false
/@emotion/weak-memoize@0.3.1:
resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==, tarball: https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz}
dev: false
/@emotion/weak-memoize@0.4.0:
resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==, tarball: https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz}
dev: false
/@esbuild/aix-ppc64@0.23.1:
resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==, tarball: https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.23.1.tgz}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
requiresBuild: true
dev: true
optional: true
/@esbuild/aix-ppc64@0.24.0:
resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==, tarball: https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.0.tgz}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
requiresBuild: true
dev: true
optional: true
/@esbuild/android-arm64@0.23.1:
resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==, tarball: https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.23.1.tgz}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
requiresBuild: true
dev: true
optional: true
/@esbuild/android-arm64@0.24.0:
resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==, tarball: https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.0.tgz}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
requiresBuild: true