-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathyarn.lock
More file actions
17075 lines (15432 loc) · 597 KB
/
yarn.lock
File metadata and controls
17075 lines (15432 loc) · 597 KB
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
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"302-ai-studio@workspace:.":
version: 0.0.0-use.local
resolution: "302-ai-studio@workspace:."
dependencies:
"@babel/core": "npm:^7.28.0"
"@better-fetch/fetch": "npm:^1.1.18"
"@biomejs/biome": "npm:^2.2.0"
"@commitlint/cli": "npm:^19.8.1"
"@commitlint/config-conventional": "npm:^19.8.1"
"@electron-toolkit/preload": "npm:^3.0.2"
"@electron-toolkit/tsconfig": "npm:^1.0.1"
"@electron-toolkit/utils": "npm:^4.0.0"
"@electron/notarize": "npm:^3.0.1"
"@floating-ui/react": "npm:^0.27.16"
"@hello-pangea/dnd": "npm:^18.0.1"
"@intentui/icons": "npm:^1.10.33"
"@lexical/react": "npm:^0.34.0"
"@lobehub/icons-static-svg": "npm:^1.53.0"
"@modelcontextprotocol/sdk": "npm:^1.17.0"
"@monaco-editor/react": "npm:^4.7.0"
"@tailwindcss/postcss": "npm:^4.1.4"
"@tailwindcss/vite": "npm:^4.1.4"
"@tanstack/react-virtual": "npm:^3.13.12"
"@triplit/cli": "npm:^1.0.50"
"@triplit/client": "npm:^1.0.50"
"@triplit/react": "npm:^1.0.51"
"@triplit/server": "npm:^1.1.8"
"@types/babel__core": "npm:^7"
"@types/node": "npm:^22.13.8"
"@types/react": "npm:^19.0.10"
"@types/react-dom": "npm:^19.0.4"
"@types/react-syntax-highlighter": "npm:^15"
"@types/react-window": "npm:^1.8.8"
"@types/semver": "npm:^7.5.8"
"@types/xml2js": "npm:^0"
"@vitejs/plugin-react": "npm:^4.3.4"
"@zumer/snapdom": "npm:^1.9.9"
babel-plugin-react-compiler: "npm:^19.1.0-rc.2"
better-sqlite3: "npm:^11.10.0"
class-variance-authority: "npm:^0.7.1"
clsx: "npm:^2.1.1"
code-inspector-plugin: "npm:^0.20.1"
commitizen: "npm:^4.3.0"
cross-env: "npm:^7.0.3"
cz-conventional-changelog: "npm:^3.3.0"
date-fns: "npm:^4.1.0"
dedent: "npm:^1.6.0"
electron: "npm:^35.1.5"
electron-builder: "npm:26.0.12"
electron-extension-installer: "npm:^1.2.0"
electron-log: "npm:^5.3.4"
electron-rebuild: "npm:^3.2.9"
electron-router-dom: "npm:^2.1.0"
electron-store: "npm:^8.2.0"
electron-updater: "npm:6.6.2"
electron-vite: "npm:^3.1.0"
electron-window-state: "npm:^5.0.3"
es-toolkit: "npm:^1.39.8"
eslint-plugin-react-hooks: "npm:6.0.0-rc.1"
file-type: "npm:^21.0.0"
frimousse: "npm:^0.3.0"
harden-react-markdown: "npm:^1.0.4"
husky: "npm:^9.1.7"
i18next: "npm:^25.0.0"
inversify: "npm:^7.5.2"
katex: "npm:^0.16.11"
ldrs: "npm:^1.1.7"
lexical: "npm:^0.34.0"
linkify-react: "npm:^4.3.1"
linkifyjs: "npm:^4.3.1"
lucide-react: "npm:^0.542.0"
mammoth: "npm:^1.9.1"
mermaid: "npm:^11.6.0"
mitt: "npm:^3.0.1"
motion: "npm:^12.9.2"
nanoid: "npm:^5.1.5"
node-cron: "npm:^4.2.1"
npm-run-all: "npm:^4.1.5"
open: "npm:^10.1.0"
openai: "npm:^5.12.2"
pdf-parse-new: "npm:^1.3.9"
portfinder: "npm:^1.0.37"
react: "npm:^19.1.0"
react-aria-components: "npm:^1.11.0"
react-dom: "npm:^19.1.0"
react-i18next: "npm:^15.4.1"
react-markdown: "npm:^10.1.0"
react-router-dom: "npm:^7.2.0"
react-scan: "npm:^0.4.3"
react-syntax-highlighter: "npm:^15.6.1"
react-window: "npm:^1.8.11"
reflect-metadata: "npm:^0.2.2"
rehype-katex: "npm:^7.0.1"
remark-cjk-friendly: "npm:^1.2.0"
remark-gfm: "npm:^4.0.1"
remark-math: "npm:^6.0.0"
rimraf: "npm:^6.0.1"
rollup-plugin-inject-process-env: "npm:^1.3.1"
semver: "npm:^7.5.4"
sharp: "npm:^0.34.2"
shiki: "npm:^3.6.0"
sonner: "npm:^2.0.3"
tailwind-merge: "npm:^3.2.0"
tailwind-variants: "npm:^1.0.0"
tailwindcss: "npm:^4.1.4"
tailwindcss-react-aria-components: "npm:^2.0.0"
tokenx: "npm:^1.0.1"
ts-pattern: "npm:^5.8.0"
tsx: "npm:^4.19.3"
turndown: "npm:^7.2.0"
tw-animate-css: "npm:^1.2.5"
typescript: "npm:^5.1.6"
unist-util-visit: "npm:^5.0.0"
vite: "npm:^6.3.3"
vite-plugin-babel: "npm:^1.3.2"
vite-tsconfig-paths: "npm:^5.1.4"
xlsx: "npm:^0.18.5"
xml2js: "npm:^0.6.2"
zod: "npm:^4.0.15"
dependenciesMeta:
sharp:
built: false
languageName: unknown
linkType: soft
"7zip-bin@npm:~5.2.0":
version: 5.2.0
resolution: "7zip-bin@npm:5.2.0"
checksum: 10c0/7f6c69b4cb10c4060fb8fda258ae2ab88d30516b5a52941efa0e2cbd9ce362ab7d8d568549cd85e9f125c1c68f95c7bb076cc314c2f3c0cb306d3b638080c2ce
languageName: node
linkType: hard
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: 10c0/7b878c48b9d25277d0e1a9b8b2f2312a314af806b4129dc902f2bc29ab09b58236e53964689feec187b28c80d2203aff03829754773a707a8a5987f1b7682d92
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.0, @ampproject/remapping@npm:^2.3.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed
languageName: node
linkType: hard
"@antfu/install-pkg@npm:^1.0.0":
version: 1.1.0
resolution: "@antfu/install-pkg@npm:1.1.0"
dependencies:
package-manager-detector: "npm:^1.3.0"
tinyexec: "npm:^1.0.1"
checksum: 10c0/140d5994c76fd3d0e824c88f1ce91b3370e8066a8bc2f5729ae133bf768caa239f7915e29c78f239b7ead253113ace51293e95127fafe2b786b88eb615b3be47
languageName: node
linkType: hard
"@antfu/utils@npm:^8.1.0":
version: 8.1.1
resolution: "@antfu/utils@npm:8.1.1"
checksum: 10c0/cd55d322496f0324323a7bd312bbdc305db02f5c74c53d59213a00a7ecfd66926b6755a41f27c6e664a687cd7a967d3a8b12d3ea57f264ae45dd1c5c181f5160
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/code-frame@npm:7.27.1"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.27.1"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.1.1"
checksum: 10c0/5dd9a18baa5fce4741ba729acc3a3272c49c25cb8736c4b18e113099520e7ef7b545a4096a26d600e4416157e63e87d66db46aa3fbf0a5f2286da2705c12da00
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.27.2":
version: 7.27.7
resolution: "@babel/compat-data@npm:7.27.7"
checksum: 10c0/08f2d3bd1b38e7e8cd159c5ddeb458696338ef7cd3fe0cc4384a0af5353ef8577ee3f25f01f0a88544c0e7ada972d0d2826a06744c695b211bfb172b76c0ca38
languageName: node
linkType: hard
"@babel/core@npm:^7.24.4, @babel/core@npm:^7.26.0, @babel/core@npm:^7.28.0":
version: 7.28.0
resolution: "@babel/core@npm:7.28.0"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.27.1"
"@babel/generator": "npm:^7.28.0"
"@babel/helper-compilation-targets": "npm:^7.27.2"
"@babel/helper-module-transforms": "npm:^7.27.3"
"@babel/helpers": "npm:^7.27.6"
"@babel/parser": "npm:^7.28.0"
"@babel/template": "npm:^7.27.2"
"@babel/traverse": "npm:^7.28.0"
"@babel/types": "npm:^7.28.0"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 10c0/423302e7c721e73b1c096217880272e02020dfb697a55ccca60ad01bba90037015f84d0c20c6ce297cf33a19bb704bc5c2b3d3095f5284dfa592bd1de0b9e8c3
languageName: node
linkType: hard
"@babel/core@npm:^7.26.10, @babel/core@npm:^7.27.4":
version: 7.27.7
resolution: "@babel/core@npm:7.27.7"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.27.1"
"@babel/generator": "npm:^7.27.5"
"@babel/helper-compilation-targets": "npm:^7.27.2"
"@babel/helper-module-transforms": "npm:^7.27.3"
"@babel/helpers": "npm:^7.27.6"
"@babel/parser": "npm:^7.27.7"
"@babel/template": "npm:^7.27.2"
"@babel/traverse": "npm:^7.27.7"
"@babel/types": "npm:^7.27.7"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 10c0/02c0cd475821c5333d5ee5eb9a0565af1a38234b37859ae09c4c95d7171bbc11a23a6f733c31b3cb12dc523311bdc8f7f9d705136f33eeb6704b7fbd6e6468ca
languageName: node
linkType: hard
"@babel/generator@npm:^7.26.2, @babel/generator@npm:^7.28.0":
version: 7.28.0
resolution: "@babel/generator@npm:7.28.0"
dependencies:
"@babel/parser": "npm:^7.28.0"
"@babel/types": "npm:^7.28.0"
"@jridgewell/gen-mapping": "npm:^0.3.12"
"@jridgewell/trace-mapping": "npm:^0.3.28"
jsesc: "npm:^3.0.2"
checksum: 10c0/1b3d122268ea3df50fde707ad864d9a55c72621357d5cebb972db3dd76859c45810c56e16ad23123f18f80cc2692f5a015d2858361300f0f224a05dc43d36a92
languageName: node
linkType: hard
"@babel/generator@npm:^7.27.5":
version: 7.27.5
resolution: "@babel/generator@npm:7.27.5"
dependencies:
"@babel/parser": "npm:^7.27.5"
"@babel/types": "npm:^7.27.3"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^3.0.2"
checksum: 10c0/8f649ef4cd81765c832bb11de4d6064b035ffebdecde668ba7abee68a7b0bce5c9feabb5dc5bb8aeba5bd9e5c2afa3899d852d2bd9ca77a711ba8c8379f416f0
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.27.1":
version: 7.27.3
resolution: "@babel/helper-annotate-as-pure@npm:7.27.3"
dependencies:
"@babel/types": "npm:^7.27.3"
checksum: 10c0/94996ce0a05b7229f956033e6dcd69393db2b0886d0db6aff41e704390402b8cdcca11f61449cb4f86cfd9e61b5ad3a73e4fa661eeed7846b125bd1c33dbc633
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.27.2":
version: 7.27.2
resolution: "@babel/helper-compilation-targets@npm:7.27.2"
dependencies:
"@babel/compat-data": "npm:^7.27.2"
"@babel/helper-validator-option": "npm:^7.27.1"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10c0/f338fa00dcfea931804a7c55d1a1c81b6f0a09787e528ec580d5c21b3ecb3913f6cb0f361368973ce953b824d910d3ac3e8a8ee15192710d3563826447193ad1
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-create-class-features-plugin@npm:7.27.1"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.27.1"
"@babel/helper-member-expression-to-functions": "npm:^7.27.1"
"@babel/helper-optimise-call-expression": "npm:^7.27.1"
"@babel/helper-replace-supers": "npm:^7.27.1"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.27.1"
"@babel/traverse": "npm:^7.27.1"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/4ee199671d6b9bdd4988aa2eea4bdced9a73abfc831d81b00c7634f49a8fc271b3ceda01c067af58018eb720c6151322015d463abea7072a368ee13f35adbb4c
languageName: node
linkType: hard
"@babel/helper-globals@npm:^7.28.0":
version: 7.28.0
resolution: "@babel/helper-globals@npm:7.28.0"
checksum: 10c0/5a0cd0c0e8c764b5f27f2095e4243e8af6fa145daea2b41b53c0c1414fe6ff139e3640f4e2207ae2b3d2153a1abd346f901c26c290ee7cb3881dd922d4ee9232
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-member-expression-to-functions@npm:7.27.1"
dependencies:
"@babel/traverse": "npm:^7.27.1"
"@babel/types": "npm:^7.27.1"
checksum: 10c0/5762ad009b6a3d8b0e6e79ff6011b3b8fdda0fefad56cfa8bfbe6aa02d5a8a8a9680a45748fe3ac47e735a03d2d88c0a676e3f9f59f20ae9fadcc8d51ccd5a53
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-module-imports@npm:7.27.1"
dependencies:
"@babel/traverse": "npm:^7.27.1"
"@babel/types": "npm:^7.27.1"
checksum: 10c0/e00aace096e4e29290ff8648455c2bc4ed982f0d61dbf2db1b5e750b9b98f318bf5788d75a4f974c151bd318fd549e81dbcab595f46b14b81c12eda3023f51e8
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.27.3":
version: 7.27.3
resolution: "@babel/helper-module-transforms@npm:7.27.3"
dependencies:
"@babel/helper-module-imports": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.27.1"
"@babel/traverse": "npm:^7.27.3"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/fccb4f512a13b4c069af51e1b56b20f54024bcf1591e31e978a30f3502567f34f90a80da6a19a6148c249216292a8074a0121f9e52602510ef0f32dbce95ca01
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-optimise-call-expression@npm:7.27.1"
dependencies:
"@babel/types": "npm:^7.27.1"
checksum: 10c0/6b861e7fcf6031b9c9fc2de3cd6c005e94a459d6caf3621d93346b52774925800ca29d4f64595a5ceacf4d161eb0d27649ae385110ed69491d9776686fa488e6
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-plugin-utils@npm:7.27.1"
checksum: 10c0/94cf22c81a0c11a09b197b41ab488d416ff62254ce13c57e62912c85700dc2e99e555225787a4099ff6bae7a1812d622c80fbaeda824b79baa10a6c5ac4cf69b
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-replace-supers@npm:7.27.1"
dependencies:
"@babel/helper-member-expression-to-functions": "npm:^7.27.1"
"@babel/helper-optimise-call-expression": "npm:^7.27.1"
"@babel/traverse": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/4f2eaaf5fcc196580221a7ccd0f8873447b5d52745ad4096418f6101a1d2e712e9f93722c9a32bc9769a1dc197e001f60d6f5438d4dfde4b9c6a9e4df719354c
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.27.1"
dependencies:
"@babel/traverse": "npm:^7.27.1"
"@babel/types": "npm:^7.27.1"
checksum: 10c0/f625013bcdea422c470223a2614e90d2c1cc9d832e97f32ca1b4f82b34bb4aa67c3904cb4b116375d3b5b753acfb3951ed50835a1e832e7225295c7b0c24dff7
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-string-parser@npm:7.27.1"
checksum: 10c0/8bda3448e07b5583727c103560bcf9c4c24b3c1051a4c516d4050ef69df37bb9a4734a585fe12725b8c2763de0a265aa1e909b485a4e3270b7cfd3e4dbe4b602
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-validator-identifier@npm:7.27.1"
checksum: 10c0/c558f11c4871d526498e49d07a84752d1800bf72ac0d3dad100309a2eaba24efbf56ea59af5137ff15e3a00280ebe588560534b0e894a4750f8b1411d8f78b84
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-validator-option@npm:7.27.1"
checksum: 10c0/6fec5f006eba40001a20f26b1ef5dbbda377b7b68c8ad518c05baa9af3f396e780bdfded24c4eef95d14bb7b8fd56192a6ed38d5d439b97d10efc5f1a191d148
languageName: node
linkType: hard
"@babel/helpers@npm:^7.27.6":
version: 7.27.6
resolution: "@babel/helpers@npm:7.27.6"
dependencies:
"@babel/template": "npm:^7.27.2"
"@babel/types": "npm:^7.27.6"
checksum: 10c0/448bac96ef8b0f21f2294a826df9de6bf4026fd023f8a6bb6c782fe3e61946801ca24381490b8e58d861fee75cd695a1882921afbf1f53b0275ee68c938bd6d3
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.27.2, @babel/parser@npm:^7.27.5, @babel/parser@npm:^7.27.7":
version: 7.27.7
resolution: "@babel/parser@npm:7.27.7"
dependencies:
"@babel/types": "npm:^7.27.7"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/f6202faeb873f0b3083022e50a5046fe07266d337c0a3bd80a491f8435ba6d9e383d49725e3dcd666b3b52c0dccb4e0f1f1004915762345f7eeed5ba54ea9fd2
languageName: node
linkType: hard
"@babel/parser@npm:^7.24.4, @babel/parser@npm:^7.28.0":
version: 7.28.0
resolution: "@babel/parser@npm:7.28.0"
dependencies:
"@babel/types": "npm:^7.28.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/c2ef81d598990fa949d1d388429df327420357cb5200271d0d0a2784f1e6d54afc8301eb8bdf96d8f6c77781e402da93c7dc07980fcc136ac5b9d5f1fce701b5
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.25.9":
version: 7.27.1
resolution: "@babel/plugin-transform-arrow-functions@npm:7.27.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/19abd7a7d11eef58c9340408a4c2594503f6c4eaea1baa7b0e5fbdda89df097e50663edb3448ad2300170b39efca98a75e5767af05cad3b0facb4944326896a3
languageName: node
linkType: hard
"@babel/plugin-transform-private-methods@npm:^7.24.4":
version: 7.27.1
resolution: "@babel/plugin-transform-private-methods@npm:7.27.1"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.27.1"
"@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/232bedfe9d28df215fb03cc7623bdde468b1246bdd6dc24465ff4bf9cc5f5a256ae33daea1fafa6cc59705e4d29da9024bb79baccaa5cd92811ac5db9b9244f2
languageName: node
linkType: hard
"@babel/plugin-transform-react-jsx-self@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/plugin-transform-react-jsx-self@npm:7.27.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/00a4f917b70a608f9aca2fb39aabe04a60aa33165a7e0105fd44b3a8531630eb85bf5572e9f242f51e6ad2fa38c2e7e780902176c863556c58b5ba6f6e164031
languageName: node
linkType: hard
"@babel/plugin-transform-react-jsx-source@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/plugin-transform-react-jsx-source@npm:7.27.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/5e67b56c39c4d03e59e03ba80692b24c5a921472079b63af711b1d250fc37c1733a17069b63537f750f3e937ec44a42b1ee6a46cd23b1a0df5163b17f741f7f2
languageName: node
linkType: hard
"@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.26.7, @babel/runtime@npm:^7.27.0, @babel/runtime@npm:^7.27.6":
version: 7.27.6
resolution: "@babel/runtime@npm:7.27.6"
checksum: 10c0/89726be83f356f511dcdb74d3ea4d873a5f0cf0017d4530cb53aa27380c01ca102d573eff8b8b77815e624b1f8c24e7f0311834ad4fb632c90a770fda00bd4c8
languageName: node
linkType: hard
"@babel/runtime@npm:^7.12.5":
version: 7.28.3
resolution: "@babel/runtime@npm:7.28.3"
checksum: 10c0/b360f82c2c5114f2a062d4d143d7b4ec690094764853937110585a9497977aed66c102166d0e404766c274e02a50ffb8f6d77fef7251ecf3f607f0e03e6397bc
languageName: node
linkType: hard
"@babel/runtime@npm:^7.3.1":
version: 7.28.2
resolution: "@babel/runtime@npm:7.28.2"
checksum: 10c0/c20afe253629d53a405a610b12a62ac74d341a2c1e0fb202bbef0c118f6b5c84f94bf16039f58fd0483dd256901259930a43976845bdeb180cab1f882c21b6e0
languageName: node
linkType: hard
"@babel/template@npm:^7.27.2":
version: 7.27.2
resolution: "@babel/template@npm:7.27.2"
dependencies:
"@babel/code-frame": "npm:^7.27.1"
"@babel/parser": "npm:^7.27.2"
"@babel/types": "npm:^7.27.1"
checksum: 10c0/ed9e9022651e463cc5f2cc21942f0e74544f1754d231add6348ff1b472985a3b3502041c0be62dc99ed2d12cfae0c51394bf827452b98a2f8769c03b87aadc81
languageName: node
linkType: hard
"@babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.27.3, @babel/traverse@npm:^7.27.7":
version: 7.27.7
resolution: "@babel/traverse@npm:7.27.7"
dependencies:
"@babel/code-frame": "npm:^7.27.1"
"@babel/generator": "npm:^7.27.5"
"@babel/parser": "npm:^7.27.7"
"@babel/template": "npm:^7.27.2"
"@babel/types": "npm:^7.27.7"
debug: "npm:^4.3.1"
globals: "npm:^11.1.0"
checksum: 10c0/941fecd0248546f059d58230590a2765d128ef072c8521c9e0bcf6037abf28a0ea4736003d0d695513128d07fe00a7bc57acaada2ed905941d44619b9f49cf0c
languageName: node
linkType: hard
"@babel/traverse@npm:^7.28.0":
version: 7.28.0
resolution: "@babel/traverse@npm:7.28.0"
dependencies:
"@babel/code-frame": "npm:^7.27.1"
"@babel/generator": "npm:^7.28.0"
"@babel/helper-globals": "npm:^7.28.0"
"@babel/parser": "npm:^7.28.0"
"@babel/template": "npm:^7.27.2"
"@babel/types": "npm:^7.28.0"
debug: "npm:^4.3.1"
checksum: 10c0/32794402457827ac558173bcebdcc0e3a18fa339b7c41ca35621f9f645f044534d91bb923ff385f5f960f2e495f56ce18d6c7b0d064d2f0ccb55b285fa6bc7b9
languageName: node
linkType: hard
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.27.6, @babel/types@npm:^7.27.7":
version: 7.27.7
resolution: "@babel/types@npm:7.27.7"
dependencies:
"@babel/helper-string-parser": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.27.1"
checksum: 10c0/1d1dcb5fa7cfba2b4034a3ab99ba17049bfc4af9e170935575246cdb1cee68b04329a0111506d9ae83fb917c47dbd4394a6db5e32fbd041b7834ffbb17ca086b
languageName: node
linkType: hard
"@babel/types@npm:^7.26.0, @babel/types@npm:^7.28.0":
version: 7.28.1
resolution: "@babel/types@npm:7.28.1"
dependencies:
"@babel/helper-string-parser": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.27.1"
checksum: 10c0/5e99b346c11ee42ffb0cadc28159fe0b184d865a2cc1593df79b199772a534f6453969b4942aa5e4a55a3081863096e1cc3fc1c724d826926dc787cf229b845d
languageName: node
linkType: hard
"@better-fetch/fetch@npm:^1.1.18":
version: 1.1.18
resolution: "@better-fetch/fetch@npm:1.1.18"
checksum: 10c0/b8202e4d3dbcd52fd8b5b2f255817606c300f37c60b1d9876f560372b77f66cb6d730e72e2c9b35bca06a1e364ed9d08977c0e8c2ce0ee30fdb4c6f43aae9433
languageName: node
linkType: hard
"@biomejs/biome@npm:^2.2.0":
version: 2.2.0
resolution: "@biomejs/biome@npm:2.2.0"
dependencies:
"@biomejs/cli-darwin-arm64": "npm:2.2.0"
"@biomejs/cli-darwin-x64": "npm:2.2.0"
"@biomejs/cli-linux-arm64": "npm:2.2.0"
"@biomejs/cli-linux-arm64-musl": "npm:2.2.0"
"@biomejs/cli-linux-x64": "npm:2.2.0"
"@biomejs/cli-linux-x64-musl": "npm:2.2.0"
"@biomejs/cli-win32-arm64": "npm:2.2.0"
"@biomejs/cli-win32-x64": "npm:2.2.0"
dependenciesMeta:
"@biomejs/cli-darwin-arm64":
optional: true
"@biomejs/cli-darwin-x64":
optional: true
"@biomejs/cli-linux-arm64":
optional: true
"@biomejs/cli-linux-arm64-musl":
optional: true
"@biomejs/cli-linux-x64":
optional: true
"@biomejs/cli-linux-x64-musl":
optional: true
"@biomejs/cli-win32-arm64":
optional: true
"@biomejs/cli-win32-x64":
optional: true
bin:
biome: bin/biome
checksum: 10c0/092ee79cad7f253427499aa193374e4c1fe5935be916d426f96fd1b8864b9c95f623d447c096894a4f864a15618c965f71863987c7afdcf77e5cdb79ec28fecd
languageName: node
linkType: hard
"@biomejs/cli-darwin-arm64@npm:2.2.0":
version: 2.2.0
resolution: "@biomejs/cli-darwin-arm64@npm:2.2.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-darwin-x64@npm:2.2.0":
version: 2.2.0
resolution: "@biomejs/cli-darwin-x64@npm:2.2.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64-musl@npm:2.2.0":
version: 2.2.0
resolution: "@biomejs/cli-linux-arm64-musl@npm:2.2.0"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64@npm:2.2.0":
version: 2.2.0
resolution: "@biomejs/cli-linux-arm64@npm:2.2.0"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-linux-x64-musl@npm:2.2.0":
version: 2.2.0
resolution: "@biomejs/cli-linux-x64-musl@npm:2.2.0"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-x64@npm:2.2.0":
version: 2.2.0
resolution: "@biomejs/cli-linux-x64@npm:2.2.0"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-win32-arm64@npm:2.2.0":
version: 2.2.0
resolution: "@biomejs/cli-win32-arm64@npm:2.2.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-win32-x64@npm:2.2.0":
version: 2.2.0
resolution: "@biomejs/cli-win32-x64@npm:2.2.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@braintree/sanitize-url@npm:^7.0.4":
version: 7.1.1
resolution: "@braintree/sanitize-url@npm:7.1.1"
checksum: 10c0/fdfc1759c4244e287693ce1e9d42d649423e7c203fdccf27a571f8951ddfe34baa5273b7e6a8dd3007d7676859c7a0a9819be0ab42a3505f8505ad0eefecf7c1
languageName: node
linkType: hard
"@chevrotain/cst-dts-gen@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/cst-dts-gen@npm:11.0.3"
dependencies:
"@chevrotain/gast": "npm:11.0.3"
"@chevrotain/types": "npm:11.0.3"
lodash-es: "npm:4.17.21"
checksum: 10c0/9e945a0611386e4e08af34c2d0b3af36c1af08f726b58145f11310f2aeafcb2d65264c06ec65a32df6b6a65771e6a55be70580c853afe3ceb51487e506967104
languageName: node
linkType: hard
"@chevrotain/gast@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/gast@npm:11.0.3"
dependencies:
"@chevrotain/types": "npm:11.0.3"
lodash-es: "npm:4.17.21"
checksum: 10c0/54fc44d7b4a7b0323f49d957dd88ad44504922d30cb226d93b430b0e09925efe44e0726068581d777f423fabfb878a2238ed2c87b690c0c0014ebd12b6968354
languageName: node
linkType: hard
"@chevrotain/regexp-to-ast@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/regexp-to-ast@npm:11.0.3"
checksum: 10c0/6939c5c94fbfb8c559a4a37a283af5ded8e6147b184a7d7bcf5ad1404d9d663c78d81602bd8ea8458ec497358a9e1671541099c511835d0be2cad46f00c62b3f
languageName: node
linkType: hard
"@chevrotain/types@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/types@npm:11.0.3"
checksum: 10c0/72fe8f0010ebef848e47faea14a88c6fdc3cdbafaef6b13df4a18c7d33249b1b675e37b05cb90a421700c7016dae7cd4187ab6b549e176a81cea434f69cd2503
languageName: node
linkType: hard
"@chevrotain/utils@npm:11.0.3":
version: 11.0.3
resolution: "@chevrotain/utils@npm:11.0.3"
checksum: 10c0/b31972d1b2d444eef1499cf9b7576fc1793e8544910de33a3c18e07c270cfad88067f175d0ee63e7bc604713ebed647f8190db45cc8311852cd2d4fe2ef14068
languageName: node
linkType: hard
"@clack/core@npm:0.3.5, @clack/core@npm:^0.3.5":
version: 0.3.5
resolution: "@clack/core@npm:0.3.5"
dependencies:
picocolors: "npm:^1.0.0"
sisteransi: "npm:^1.0.5"
checksum: 10c0/b1037226b38696bd95e09beef789ff4e23abb282505ac233c0316c2410c8afb68cf91b67812c883f05ffa6943d6f0593f1ebc17beb94f4a42c13e4657f598c0b
languageName: node
linkType: hard
"@clack/prompts@npm:^0.8.2":
version: 0.8.2
resolution: "@clack/prompts@npm:0.8.2"
dependencies:
"@clack/core": "npm:0.3.5"
picocolors: "npm:^1.0.0"
sisteransi: "npm:^1.0.5"
checksum: 10c0/7ac6e7e0fba1c958847e6e3ef9415d9c2184fb424b31691aaef64fd06042d243e859c157b941ca1c9f73e9cb649413fab487a602b981e300acfbec4a111d7562
languageName: node
linkType: hard
"@commitlint/cli@npm:^19.8.1":
version: 19.8.1
resolution: "@commitlint/cli@npm:19.8.1"
dependencies:
"@commitlint/format": "npm:^19.8.1"
"@commitlint/lint": "npm:^19.8.1"
"@commitlint/load": "npm:^19.8.1"
"@commitlint/read": "npm:^19.8.1"
"@commitlint/types": "npm:^19.8.1"
tinyexec: "npm:^1.0.0"
yargs: "npm:^17.0.0"
bin:
commitlint: ./cli.js
checksum: 10c0/41a5b6aa27aaead8ed400eb212c87d06fdb8fae219ebccd37369a4aab2e3cff25afc4b3c3fa18df9dc19a0ae4ab6599f9adb5c836cad31c2589cb988aefe5515
languageName: node
linkType: hard
"@commitlint/config-conventional@npm:^19.8.1":
version: 19.8.1
resolution: "@commitlint/config-conventional@npm:19.8.1"
dependencies:
"@commitlint/types": "npm:^19.8.1"
conventional-changelog-conventionalcommits: "npm:^7.0.2"
checksum: 10c0/654786e1acd64756e5c88838c19d9eb5d5ee7a6f314af65585dc18cc4002990e971614e7c69f49e5489be9430671aa5b39af005a2160c5a4f26391258d38febf
languageName: node
linkType: hard
"@commitlint/config-validator@npm:^19.8.1":
version: 19.8.1
resolution: "@commitlint/config-validator@npm:19.8.1"
dependencies:
"@commitlint/types": "npm:^19.8.1"
ajv: "npm:^8.11.0"
checksum: 10c0/68f84f47503fb17845512b1da45d632211c07605e5a20ef5b56d8732b81a760fec6c5a41847b59a31628a2d40a44cc5c0cfa33e7e02247b198984bab66b06a5d
languageName: node
linkType: hard
"@commitlint/ensure@npm:^19.8.1":
version: 19.8.1
resolution: "@commitlint/ensure@npm:19.8.1"
dependencies:
"@commitlint/types": "npm:^19.8.1"
lodash.camelcase: "npm:^4.3.0"
lodash.kebabcase: "npm:^4.1.1"
lodash.snakecase: "npm:^4.1.1"
lodash.startcase: "npm:^4.4.0"
lodash.upperfirst: "npm:^4.3.1"
checksum: 10c0/1a2fdf51f333ab21ede58de82243bb53bb13dac91f3d5f1e20db865a6e5a09b51faef692badf4c59e911ad8f761c1e103827b485938b7e9688db389a444a8d7d
languageName: node
linkType: hard
"@commitlint/execute-rule@npm:^19.8.1":
version: 19.8.1
resolution: "@commitlint/execute-rule@npm:19.8.1"
checksum: 10c0/dfdcec63f16a445c85b4bf540a5abe237f230cf5a357d9bd89142722d6bea6800cccadbd570b78d6799121ed51b0ed47fe12ab69ddd7edb53449b78e9f79a4be
languageName: node
linkType: hard
"@commitlint/format@npm:^19.8.1":
version: 19.8.1
resolution: "@commitlint/format@npm:19.8.1"
dependencies:
"@commitlint/types": "npm:^19.8.1"
chalk: "npm:^5.3.0"
checksum: 10c0/cd8688b2abd426e2cae2ab752e43198b218cb11a0f4b45fc13655799d7cfe1192eb78c757d28bc7fe11151eabc1fee412a77f3248550b34c36612969eefe59cf
languageName: node
linkType: hard
"@commitlint/is-ignored@npm:^19.8.1":
version: 19.8.1
resolution: "@commitlint/is-ignored@npm:19.8.1"
dependencies:
"@commitlint/types": "npm:^19.8.1"
semver: "npm:^7.6.0"
checksum: 10c0/8b16583a7615f9b2a4fc8882ddd8140bfe3e909cc5d44b536d1b4e7857a90a8b15c27b30bb9b7a712b707f27c58014290a362dd8ecebdb1e8bde90d20c67eea6
languageName: node
linkType: hard
"@commitlint/lint@npm:^19.8.1":
version: 19.8.1
resolution: "@commitlint/lint@npm:19.8.1"
dependencies:
"@commitlint/is-ignored": "npm:^19.8.1"
"@commitlint/parse": "npm:^19.8.1"
"@commitlint/rules": "npm:^19.8.1"
"@commitlint/types": "npm:^19.8.1"
checksum: 10c0/013ceb3acd7291d0e05e9c77ed160a3e8d04334b90f807f6d4fbc2682c86ba41b434721d229bf90784a59197353d80880d977a92fa6f6f025c4ab1b1773cf2ea
languageName: node
linkType: hard
"@commitlint/load@npm:>6.1.1, @commitlint/load@npm:^19.8.1":
version: 19.8.1
resolution: "@commitlint/load@npm:19.8.1"
dependencies:
"@commitlint/config-validator": "npm:^19.8.1"
"@commitlint/execute-rule": "npm:^19.8.1"
"@commitlint/resolve-extends": "npm:^19.8.1"
"@commitlint/types": "npm:^19.8.1"
chalk: "npm:^5.3.0"
cosmiconfig: "npm:^9.0.0"
cosmiconfig-typescript-loader: "npm:^6.1.0"
lodash.isplainobject: "npm:^4.0.6"
lodash.merge: "npm:^4.6.2"
lodash.uniq: "npm:^4.5.0"
checksum: 10c0/a674080552f24c12b3e04f97d9dce515461fc0af6de90fe8ecd1671357361b8ce095f5598e71ca7599f7fd4a9b4d54a7c552769237c9ca6fb56dbd69742b1b4b
languageName: node
linkType: hard
"@commitlint/message@npm:^19.8.1":
version: 19.8.1
resolution: "@commitlint/message@npm:19.8.1"
checksum: 10c0/cd0b763d63dfe7a1b47402489fd82abe47e7c4bcc4eb71edfbc7a280f9aa83627ad30ad0cbf558e4694e39d01c523d56b0dd906c4a97629dbda57f9b00e30ccd
languageName: node
linkType: hard
"@commitlint/parse@npm:^19.8.1":
version: 19.8.1
resolution: "@commitlint/parse@npm:19.8.1"
dependencies:
"@commitlint/types": "npm:^19.8.1"
conventional-changelog-angular: "npm:^7.0.0"
conventional-commits-parser: "npm:^5.0.0"
checksum: 10c0/9bad063ee83ba86cdab2e61b7ed3a6fc6e5e3c7ee1c6ae2335a7fa3578fed91fc92397ccfdb7e659d2b7bfea34e837bafbed7283037f0d10f731b099cfa9a03f
languageName: node
linkType: hard
"@commitlint/read@npm:^19.8.1":
version: 19.8.1
resolution: "@commitlint/read@npm:19.8.1"
dependencies:
"@commitlint/top-level": "npm:^19.8.1"
"@commitlint/types": "npm:^19.8.1"
git-raw-commits: "npm:^4.0.0"
minimist: "npm:^1.2.8"
tinyexec: "npm:^1.0.0"
checksum: 10c0/a32a6d68b0178c1eca3ef58e32d4bbd5b70dc8ddc0b791c1697e5236bea1fac5ed3f97bc5e6e569399673e8341fbedf7e630f1171a40b3d756ac153d022ede68
languageName: node
linkType: hard
"@commitlint/resolve-extends@npm:^19.8.1":
version: 19.8.1
resolution: "@commitlint/resolve-extends@npm:19.8.1"
dependencies:
"@commitlint/config-validator": "npm:^19.8.1"
"@commitlint/types": "npm:^19.8.1"
global-directory: "npm:^4.0.1"
import-meta-resolve: "npm:^4.0.0"
lodash.mergewith: "npm:^4.6.2"
resolve-from: "npm:^5.0.0"
checksum: 10c0/0172a0c892ae7fb95e3d982db0c559735b76384241ce524bf7257bdafb2aa8239e039894629e777e1f34c28cc7bb0938b24befb494a6b383023c004bd97adb42
languageName: node
linkType: hard
"@commitlint/rules@npm:^19.8.1":
version: 19.8.1
resolution: "@commitlint/rules@npm:19.8.1"
dependencies:
"@commitlint/ensure": "npm:^19.8.1"
"@commitlint/message": "npm:^19.8.1"
"@commitlint/to-lines": "npm:^19.8.1"
"@commitlint/types": "npm:^19.8.1"
checksum: 10c0/fa9d6ca268eec570b948d8c804f97557fd2ae2de1420e326ff387d1234fc1a255bf1ae4185affe307b2856b3b5f6ac9f13fe26b754990987b97d80b2d688076f
languageName: node
linkType: hard
"@commitlint/to-lines@npm:^19.8.1":
version: 19.8.1
resolution: "@commitlint/to-lines@npm:19.8.1"
checksum: 10c0/ad6592a550fb15379c454b8e017147dc4cecd5ee347b9a30fce0a19d80a9b5740562ac8f8fe4137864ac8bcc4892b682531c436e81b037bf4b7eb9cfc0aa016e
languageName: node
linkType: hard
"@commitlint/top-level@npm:^19.8.1":
version: 19.8.1
resolution: "@commitlint/top-level@npm:19.8.1"
dependencies:
find-up: "npm:^7.0.0"
checksum: 10c0/718723dc68bf72e9cfdeb1ee0188dcd58738b1ae8c7503d8a2b0666ec26f28a9e86ec9e12b432ebf37f14d04eaca2c8c80329228992187f2560b20a97a11f41b
languageName: node
linkType: hard
"@commitlint/types@npm:^19.8.1":
version: 19.8.1
resolution: "@commitlint/types@npm:19.8.1"
dependencies:
"@types/conventional-commits-parser": "npm:^5.0.0"
chalk: "npm:^5.3.0"
checksum: 10c0/0507db111d1ffd7b60e7ad979b7f9e674d409fc4c64561dfe30737b2c5bfefca7a1b58116106fa4ecb480059cecb13f04fa18f999d2d4a7d665b5ab13a05a803
languageName: node
linkType: hard
"@develar/schema-utils@npm:~2.6.5":
version: 2.6.5
resolution: "@develar/schema-utils@npm:2.6.5"
dependencies:
ajv: "npm:^6.12.0"
ajv-keywords: "npm:^3.4.1"
checksum: 10c0/7c6075ce6742dd5c89b3cebf81351ec1d73dafc7c3409748860e4f8262fb26ffe6d998c5baab4eca579cd436e7c6c12c615fe89819c19484a22d25b3e6825cb5
languageName: node
linkType: hard
"@electron-toolkit/preload@npm:^3.0.2":
version: 3.0.2
resolution: "@electron-toolkit/preload@npm:3.0.2"
peerDependencies:
electron: ">=13.0.0"
checksum: 10c0/aee97d7ebb49b1e5c97afc988e69b283482cd55643e70c05c9783190f22b482c3187df25ecc066a83f7a29d741ffae8159182195906fedee8f4f7dc85b2cb98d
languageName: node
linkType: hard
"@electron-toolkit/tsconfig@npm:^1.0.1":
version: 1.0.1
resolution: "@electron-toolkit/tsconfig@npm:1.0.1"
peerDependencies:
"@types/node": "*"
checksum: 10c0/6e8670998abe3a725d0d99f2466d10b9d36026035efa8872f6b91000f04b748caad9922722e2189560ef0b0489aed6d6beb4099a2ae417606cff37f6ffc3eb46
languageName: node
linkType: hard
"@electron-toolkit/utils@npm:^4.0.0":
version: 4.0.0
resolution: "@electron-toolkit/utils@npm:4.0.0"
peerDependencies:
electron: ">=13.0.0"
checksum: 10c0/fdaffa28a4b2b4d043f9d9ec7f0fcbe2b4dfc670962a0fbbdd8cadb333e0857a325b6f21b93588b4833e9c3b339f901383da82fc5e7cf625ad087db75fbdc5c9
languageName: node
linkType: hard
"@electron/asar@npm:3.2.18":
version: 3.2.18
resolution: "@electron/asar@npm:3.2.18"
dependencies:
commander: "npm:^5.0.0"
glob: "npm:^7.1.6"
minimatch: "npm:^3.0.4"
bin:
asar: bin/asar.js
checksum: 10c0/c124cb6d35740eb8efbcd9c2da3971833f63bbfd0cae66747b2d1ccedc88fc1fc667e2f6ce4362f9211d853af269b907b2d2eb9a04ed34565576f6c7f93281b2
languageName: node
linkType: hard
"@electron/asar@npm:^3.2.7":
version: 3.4.1
resolution: "@electron/asar@npm:3.4.1"
dependencies:
commander: "npm:^5.0.0"
glob: "npm:^7.1.6"
minimatch: "npm:^3.0.4"
bin:
asar: bin/asar.js
checksum: 10c0/9df7983125faaa29c266e4beec6ceb205e139ede0e8fb81dde84c73ac8114388a99aad21379412a972163d8879ca959621f4e4896214bf8d296ba217e7cf8170
languageName: node
linkType: hard
"@electron/fuses@npm:^1.8.0":
version: 1.8.0
resolution: "@electron/fuses@npm:1.8.0"
dependencies:
chalk: "npm:^4.1.1"
fs-extra: "npm:^9.0.1"
minimist: "npm:^1.2.5"
bin:
electron-fuses: dist/bin.js
checksum: 10c0/7a2eff2a700a0dc9997346a2cbef83a852ec4a743b047ef89ce8dddfb182377c3a71e340c0cd3dc729d843cccb524253f9a9b96f37271d431f4409f3d897a200
languageName: node
linkType: hard
"@electron/get@npm:^2.0.0":
version: 2.0.3
resolution: "@electron/get@npm:2.0.3"
dependencies: