-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
3038 lines (3038 loc) · 98.8 KB
/
package.json
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
{
"name": "monitor-oxc",
"private": true,
"packageManager": "pnpm@9.15.1",
"volta": {
"node": "22.12.0"
},
"type": "module",
"scripts": {
"generate": "node generate.mjs && pnpm i",
"test": "node --experimental-require-module src/static.test.mjs",
"rolldown": "rm -rf dist && rolldown -c",
"profile-rolldown": "rm -rf dist && xcrun xctrace record --template 'Time Profile' --output . --launch -- /Users/boshen/.volta/tools/image/node/22.12.0/bin/node /Users/boshen/github/rolldown/packages/rolldown/bin/cli.js -c"
},
"dependencies": {
"npm-high-impact": "1.9.0",
"rolldown": "nightly",
"tsx": "latest"
},
"devDependencies": {
"@aashutoshrathi/word-wrap": "latest",
"@actions/http-client": "latest",
"@adobe/css-tools": "latest",
"@alloc/quick-lru": "latest",
"@ampproject/remapping": "latest",
"@apideck/better-ajv-errors": "latest",
"@apidevtools/json-schema-ref-parser": "latest",
"@apollo/client": "latest",
"@ardatan/relay-compiler": "latest",
"@aws-crypto/crc32": "latest",
"@aws-crypto/crc32c": "latest",
"@aws-crypto/ie11-detection": "latest",
"@aws-crypto/sha1-browser": "latest",
"@aws-crypto/sha256-browser": "latest",
"@aws-crypto/sha256-js": "latest",
"@aws-crypto/supports-web-crypto": "latest",
"@aws-crypto/util": "latest",
"@azure/abort-controller": "latest",
"@azure/core-auth": "latest",
"@azure/core-client": "latest",
"@azure/core-lro": "latest",
"@azure/core-paging": "latest",
"@azure/core-rest-pipeline": "latest",
"@azure/core-tracing": "latest",
"@azure/core-util": "latest",
"@azure/identity": "latest",
"@azure/logger": "latest",
"@azure/msal-browser": "latest",
"@azure/msal-common": "latest",
"@azure/msal-node": "latest",
"@babel/code-frame": "latest",
"@babel/core": "latest",
"@babel/eslint-parser": "latest",
"@babel/generator": "latest",
"@babel/helper-annotate-as-pure": "latest",
"@babel/helper-builder-binary-assignment-operator-visitor": "latest",
"@babel/helper-compilation-targets": "latest",
"@babel/helper-create-class-features-plugin": "latest",
"@babel/helper-create-regexp-features-plugin": "latest",
"@babel/helper-define-polyfill-provider": "latest",
"@babel/helper-environment-visitor": "latest",
"@babel/helper-explode-assignable-expression": "latest",
"@babel/helper-function-name": "latest",
"@babel/helper-get-function-arity": "latest",
"@babel/helper-hoist-variables": "latest",
"@babel/helper-member-expression-to-functions": "latest",
"@babel/helper-module-imports": "latest",
"@babel/helper-module-transforms": "latest",
"@babel/helper-optimise-call-expression": "latest",
"@babel/helper-plugin-utils": "latest",
"@babel/helper-remap-async-to-generator": "latest",
"@babel/helper-replace-supers": "latest",
"@babel/helper-simple-access": "latest",
"@babel/helper-skip-transparent-expression-wrappers": "latest",
"@babel/helper-split-export-declaration": "latest",
"@babel/helper-string-parser": "latest",
"@babel/helper-validator-identifier": "latest",
"@babel/helper-validator-option": "latest",
"@babel/helper-wrap-function": "latest",
"@babel/helpers": "latest",
"@babel/highlight": "latest",
"@babel/parser": "latest",
"@babel/plugin-bugfix-firefox-class-in-computed-class-key": "latest",
"@babel/plugin-bugfix-safari-class-field-initializer-scope": "latest",
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "latest",
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "latest",
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "latest",
"@babel/plugin-proposal-async-generator-functions": "latest",
"@babel/plugin-proposal-class-properties": "latest",
"@babel/plugin-proposal-class-static-block": "latest",
"@babel/plugin-proposal-decorators": "latest",
"@babel/plugin-proposal-dynamic-import": "latest",
"@babel/plugin-proposal-export-default-from": "latest",
"@babel/plugin-proposal-export-namespace-from": "latest",
"@babel/plugin-proposal-json-strings": "latest",
"@babel/plugin-proposal-logical-assignment-operators": "latest",
"@babel/plugin-proposal-nullish-coalescing-operator": "latest",
"@babel/plugin-proposal-numeric-separator": "latest",
"@babel/plugin-proposal-object-rest-spread": "latest",
"@babel/plugin-proposal-optional-catch-binding": "latest",
"@babel/plugin-proposal-optional-chaining": "latest",
"@babel/plugin-proposal-private-methods": "latest",
"@babel/plugin-proposal-private-property-in-object": "latest",
"@babel/plugin-proposal-unicode-property-regex": "latest",
"@babel/plugin-syntax-async-generators": "latest",
"@babel/plugin-syntax-bigint": "latest",
"@babel/plugin-syntax-class-properties": "latest",
"@babel/plugin-syntax-class-static-block": "latest",
"@babel/plugin-syntax-decorators": "latest",
"@babel/plugin-syntax-dynamic-import": "latest",
"@babel/plugin-syntax-export-default-from": "latest",
"@babel/plugin-syntax-export-namespace-from": "latest",
"@babel/plugin-syntax-flow": "latest",
"@babel/plugin-syntax-import-assertions": "latest",
"@babel/plugin-syntax-import-attributes": "latest",
"@babel/plugin-syntax-import-meta": "latest",
"@babel/plugin-syntax-json-strings": "latest",
"@babel/plugin-syntax-jsx": "latest",
"@babel/plugin-syntax-logical-assignment-operators": "latest",
"@babel/plugin-syntax-nullish-coalescing-operator": "latest",
"@babel/plugin-syntax-numeric-separator": "latest",
"@babel/plugin-syntax-object-rest-spread": "latest",
"@babel/plugin-syntax-optional-catch-binding": "latest",
"@babel/plugin-syntax-optional-chaining": "latest",
"@babel/plugin-syntax-private-property-in-object": "latest",
"@babel/plugin-syntax-top-level-await": "latest",
"@babel/plugin-syntax-typescript": "latest",
"@babel/plugin-syntax-unicode-sets-regex": "latest",
"@babel/plugin-transform-arrow-functions": "latest",
"@babel/plugin-transform-async-generator-functions": "latest",
"@babel/plugin-transform-async-to-generator": "latest",
"@babel/plugin-transform-block-scoped-functions": "latest",
"@babel/plugin-transform-block-scoping": "latest",
"@babel/plugin-transform-class-properties": "latest",
"@babel/plugin-transform-class-static-block": "latest",
"@babel/plugin-transform-classes": "latest",
"@babel/plugin-transform-computed-properties": "latest",
"@babel/plugin-transform-destructuring": "latest",
"@babel/plugin-transform-dotall-regex": "latest",
"@babel/plugin-transform-duplicate-keys": "latest",
"@babel/plugin-transform-duplicate-named-capturing-groups-regex": "latest",
"@babel/plugin-transform-dynamic-import": "latest",
"@babel/plugin-transform-exponentiation-operator": "latest",
"@babel/plugin-transform-export-namespace-from": "latest",
"@babel/plugin-transform-flow-strip-types": "latest",
"@babel/plugin-transform-for-of": "latest",
"@babel/plugin-transform-function-name": "latest",
"@babel/plugin-transform-json-strings": "latest",
"@babel/plugin-transform-literals": "latest",
"@babel/plugin-transform-logical-assignment-operators": "latest",
"@babel/plugin-transform-member-expression-literals": "latest",
"@babel/plugin-transform-modules-amd": "latest",
"@babel/plugin-transform-modules-commonjs": "latest",
"@babel/plugin-transform-modules-systemjs": "latest",
"@babel/plugin-transform-modules-umd": "latest",
"@babel/plugin-transform-named-capturing-groups-regex": "latest",
"@babel/plugin-transform-new-target": "latest",
"@babel/plugin-transform-nullish-coalescing-operator": "latest",
"@babel/plugin-transform-numeric-separator": "latest",
"@babel/plugin-transform-object-rest-spread": "latest",
"@babel/plugin-transform-object-super": "latest",
"@babel/plugin-transform-optional-catch-binding": "latest",
"@babel/plugin-transform-optional-chaining": "latest",
"@babel/plugin-transform-parameters": "latest",
"@babel/plugin-transform-private-methods": "latest",
"@babel/plugin-transform-private-property-in-object": "latest",
"@babel/plugin-transform-property-literals": "latest",
"@babel/plugin-transform-react-constant-elements": "latest",
"@babel/plugin-transform-react-display-name": "latest",
"@babel/plugin-transform-react-jsx": "latest",
"@babel/plugin-transform-react-jsx-development": "latest",
"@babel/plugin-transform-react-jsx-self": "latest",
"@babel/plugin-transform-react-jsx-source": "latest",
"@babel/plugin-transform-react-pure-annotations": "latest",
"@babel/plugin-transform-regenerator": "latest",
"@babel/plugin-transform-regexp-modifiers": "latest",
"@babel/plugin-transform-reserved-words": "latest",
"@babel/plugin-transform-runtime": "latest",
"@babel/plugin-transform-shorthand-properties": "latest",
"@babel/plugin-transform-spread": "latest",
"@babel/plugin-transform-sticky-regex": "latest",
"@babel/plugin-transform-template-literals": "latest",
"@babel/plugin-transform-typeof-symbol": "latest",
"@babel/plugin-transform-typescript": "latest",
"@babel/plugin-transform-unicode-escapes": "latest",
"@babel/plugin-transform-unicode-property-regex": "latest",
"@babel/plugin-transform-unicode-regex": "latest",
"@babel/plugin-transform-unicode-sets-regex": "latest",
"@babel/preset-env": "latest",
"@babel/preset-flow": "latest",
"@babel/preset-modules": "latest",
"@babel/preset-react": "latest",
"@babel/preset-typescript": "latest",
"@babel/register": "latest",
"@babel/regjsgen": "latest",
"@babel/template": "latest",
"@babel/traverse": "latest",
"@babel/types": "latest",
"@backstage-community/plugin-tech-insights-backend": "latest",
"@base2/pretty-print-object": "latest",
"@bcoe/v8-coverage": "latest",
"@changesets/types": "latest",
"@cnakazawa/watch": "latest",
"@colors/colors": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@commitlint/config-validator": "latest",
"@commitlint/ensure": "latest",
"@commitlint/execute-rule": "latest",
"@commitlint/format": "latest",
"@commitlint/is-ignored": "latest",
"@commitlint/lint": "latest",
"@commitlint/load": "latest",
"@commitlint/message": "latest",
"@commitlint/parse": "latest",
"@commitlint/read": "latest",
"@commitlint/resolve-extends": "latest",
"@commitlint/rules": "latest",
"@commitlint/to-lines": "latest",
"@commitlint/top-level": "latest",
"@commitlint/types": "latest",
"@cspotcode/source-map-support": "latest",
"@csstools/css-parser-algorithms": "latest",
"@csstools/css-tokenizer": "latest",
"@csstools/media-query-list-parser": "latest",
"@csstools/postcss-cascade-layers": "latest",
"@csstools/postcss-color-function": "latest",
"@csstools/postcss-font-format-keywords": "latest",
"@csstools/postcss-hwb-function": "latest",
"@csstools/postcss-ic-unit": "latest",
"@csstools/postcss-is-pseudo-class": "latest",
"@csstools/postcss-nested-calc": "latest",
"@csstools/postcss-normalize-display-values": "latest",
"@csstools/postcss-oklab-function": "latest",
"@csstools/postcss-progressive-custom-properties": "latest",
"@csstools/postcss-stepped-value-functions": "latest",
"@csstools/postcss-text-decoration-shorthand": "latest",
"@csstools/postcss-trigonometric-functions": "latest",
"@csstools/postcss-unset-value": "latest",
"@csstools/selector-specificity": "latest",
"@cucumber/messages": "latest",
"@cypress/request": "latest",
"@cypress/xvfb": "latest",
"@dabh/diagnostics": "latest",
"@datadog/native-appsec": "latest",
"@datadog/native-iast-rewriter": "latest",
"@datadog/native-iast-taint-tracking": "latest",
"@datadog/native-metrics": "latest",
"@datadog/sketches-js": "latest",
"@dataform/core": "latest",
"@discoveryjs/json-ext": "latest",
"@emnapi/runtime": "latest",
"@emotion/babel-plugin": "latest",
"@emotion/cache": "latest",
"@emotion/css": "latest",
"@emotion/hash": "latest",
"@emotion/is-prop-valid": "latest",
"@emotion/memoize": "latest",
"@emotion/react": "latest",
"@emotion/serialize": "latest",
"@emotion/sheet": "latest",
"@emotion/styled": "latest",
"@emotion/stylis": "latest",
"@emotion/unitless": "latest",
"@emotion/use-insertion-effect-with-fallbacks": "latest",
"@emotion/utils": "latest",
"@emotion/weak-memoize": "latest",
"@eslint-community/eslint-utils": "latest",
"@eslint-community/regexpp": "latest",
"@eslint/config-array": "latest",
"@eslint/eslintrc": "latest",
"@eslint/js": "latest",
"@eslint/object-schema": "latest",
"@eslint/plugin-kit": "latest",
"@faker-js/faker": "latest",
"@fastify/busboy": "latest",
"@floating-ui/core": "latest",
"@floating-ui/dom": "latest",
"@floating-ui/react": "latest",
"@floating-ui/react-dom": "latest",
"@floating-ui/utils": "latest",
"@formatjs/ecma402-abstract": "latest",
"@formatjs/fast-memoize": "latest",
"@formatjs/icu-messageformat-parser": "latest",
"@formatjs/icu-skeleton-parser": "latest",
"@formatjs/intl-localematcher": "latest",
"@gar/promisify": "latest",
"@graphql-codegen/add": "latest",
"@graphql-codegen/core": "latest",
"@graphql-codegen/plugin-helpers": "latest",
"@graphql-codegen/schema-ast": "latest",
"@graphql-codegen/typescript": "latest",
"@graphql-codegen/typescript-operations": "latest",
"@graphql-codegen/visitor-plugin-common": "latest",
"@graphql-tools/batch-execute": "latest",
"@graphql-tools/code-file-loader": "latest",
"@graphql-tools/delegate": "latest",
"@graphql-tools/executor": "latest",
"@graphql-tools/executor-graphql-ws": "latest",
"@graphql-tools/executor-http": "latest",
"@graphql-tools/executor-legacy-ws": "latest",
"@graphql-tools/git-loader": "latest",
"@graphql-tools/github-loader": "latest",
"@graphql-tools/graphql-file-loader": "latest",
"@graphql-tools/graphql-tag-pluck": "latest",
"@graphql-tools/import": "latest",
"@graphql-tools/json-file-loader": "latest",
"@graphql-tools/load": "latest",
"@graphql-tools/merge": "latest",
"@graphql-tools/optimize": "latest",
"@graphql-tools/relay-operation-optimizer": "latest",
"@graphql-tools/schema": "latest",
"@graphql-tools/url-loader": "latest",
"@graphql-tools/utils": "latest",
"@graphql-tools/wrap": "latest",
"@grpc/grpc-js": "latest",
"@grpc/proto-loader": "latest",
"@hapi/bourne": "latest",
"@hapi/hoek": "latest",
"@hapi/topo": "latest",
"@hookform/resolvers": "latest",
"@humanfs/core": "latest",
"@humanfs/node": "latest",
"@humanwhocodes/config-array": "latest",
"@humanwhocodes/module-importer": "latest",
"@humanwhocodes/object-schema": "latest",
"@humanwhocodes/retry": "latest",
"@iarna/toml": "latest",
"@inquirer/confirm": "latest",
"@inquirer/core": "latest",
"@inquirer/figures": "latest",
"@inquirer/type": "latest",
"@ioredis/commands": "latest",
"@isaacs/cliui": "latest",
"@istanbuljs/load-nyc-config": "latest",
"@istanbuljs/schema": "latest",
"@jest/console": "latest",
"@jest/core": "latest",
"@jest/create-cache-key-function": "latest",
"@jest/environment": "latest",
"@jest/expect": "latest",
"@jest/expect-utils": "latest",
"@jest/fake-timers": "latest",
"@jest/reporters": "latest",
"@jest/schemas": "latest",
"@jest/source-map": "latest",
"@jest/test-result": "latest",
"@jest/test-sequencer": "latest",
"@jest/transform": "latest",
"@jest/types": "latest",
"@jridgewell/gen-mapping": "latest",
"@jridgewell/resolve-uri": "latest",
"@jridgewell/set-array": "latest",
"@jridgewell/source-map": "latest",
"@jridgewell/sourcemap-codec": "latest",
"@jridgewell/trace-mapping": "latest",
"@js-sdsl/ordered-map": "latest",
"@jsdevtools/ono": "latest",
"@juggle/resize-observer": "latest",
"@kwsites/file-exists": "latest",
"@kwsites/promise-deferred": "latest",
"@leichtgewicht/ip-codec": "latest",
"@ljharb/through": "latest",
"@lukeed/csprng": "latest",
"@mapbox/node-pre-gyp": "latest",
"@mdx-js/react": "latest",
"@microsoft/tsdoc": "latest",
"@mongodb-js/saslprep": "latest",
"@mrmlnc/readdir-enhanced": "latest",
"@msgpackr-extract/msgpackr-extract-linux-x64": "latest",
"@mswjs/interceptors": "latest",
"@nestjs/common": "latest",
"@nestjs/core": "latest",
"@nestjs/mapped-types": "latest",
"@nestjs/platform-express": "latest",
"@ngtools/webpack": "latest",
"@nicolo-ribaudo/eslint-scope-5-internals": "latest",
"@nodelib/fs.scandir": "latest",
"@nodelib/fs.stat": "latest",
"@nodelib/fs.walk": "latest",
"@nolyfill/is-core-module": "latest",
"@npmcli/agent": "latest",
"@npmcli/fs": "latest",
"@npmcli/git": "latest",
"@npmcli/installed-package-contents": "latest",
"@npmcli/map-workspaces": "latest",
"@npmcli/move-file": "latest",
"@npmcli/name-from-folder": "latest",
"@npmcli/node-gyp": "latest",
"@npmcli/package-json": "latest",
"@npmcli/promise-spawn": "latest",
"@npmcli/redact": "latest",
"@npmcli/run-script": "latest",
"@nuxtjs/opencollective": "latest",
"@octokit/auth-token": "latest",
"@octokit/core": "latest",
"@octokit/endpoint": "latest",
"@octokit/graphql": "latest",
"@octokit/plugin-paginate-rest": "latest",
"@octokit/plugin-request-log": "latest",
"@octokit/plugin-rest-endpoint-methods": "latest",
"@octokit/request": "latest",
"@octokit/request-error": "latest",
"@octokit/rest": "latest",
"@one-ini/wasm": "latest",
"@open-draft/until": "latest",
"@opentelemetry/api": "latest",
"@opentelemetry/api-logs": "latest",
"@opentelemetry/context-async-hooks": "latest",
"@opentelemetry/core": "latest",
"@opentelemetry/exporter-trace-otlp-http": "latest",
"@opentelemetry/instrumentation": "latest",
"@opentelemetry/instrumentation-express": "latest",
"@opentelemetry/instrumentation-http": "latest",
"@opentelemetry/instrumentation-pg": "latest",
"@opentelemetry/otlp-exporter-base": "latest",
"@opentelemetry/otlp-transformer": "latest",
"@opentelemetry/propagator-b3": "latest",
"@opentelemetry/propagator-jaeger": "latest",
"@opentelemetry/resources": "latest",
"@opentelemetry/sdk-logs": "latest",
"@opentelemetry/sdk-metrics": "latest",
"@opentelemetry/sdk-trace-base": "latest",
"@opentelemetry/sdk-trace-node": "latest",
"@opentelemetry/semantic-conventions": "latest",
"@peculiar/asn1-schema": "latest",
"@peculiar/json-schema": "latest",
"@peculiar/webcrypto": "latest",
"@pkgjs/parseargs": "latest",
"@pkgr/core": "latest",
"@playwright/test": "latest",
"@pmmmwh/react-refresh-webpack-plugin": "latest",
"@pnpm/config.env-replace": "latest",
"@pnpm/network.ca-file": "latest",
"@pnpm/npm-conf": "latest",
"@polka/url": "latest",
"@popperjs/core": "latest",
"@protobufjs/aspromise": "latest",
"@protobufjs/base64": "latest",
"@protobufjs/codegen": "latest",
"@protobufjs/eventemitter": "latest",
"@protobufjs/fetch": "latest",
"@protobufjs/float": "latest",
"@protobufjs/inquire": "latest",
"@protobufjs/path": "latest",
"@protobufjs/pool": "latest",
"@protobufjs/utf8": "latest",
"@puppeteer/browsers": "latest",
"@radix-ui/number": "latest",
"@radix-ui/primitive": "latest",
"@radix-ui/react-arrow": "latest",
"@radix-ui/react-collection": "latest",
"@radix-ui/react-compose-refs": "latest",
"@radix-ui/react-context": "latest",
"@radix-ui/react-dialog": "latest",
"@radix-ui/react-direction": "latest",
"@radix-ui/react-dismissable-layer": "latest",
"@radix-ui/react-focus-guards": "latest",
"@radix-ui/react-focus-scope": "latest",
"@radix-ui/react-id": "latest",
"@radix-ui/react-popper": "latest",
"@radix-ui/react-portal": "latest",
"@radix-ui/react-presence": "latest",
"@radix-ui/react-primitive": "latest",
"@radix-ui/react-roving-focus": "latest",
"@radix-ui/react-select": "latest",
"@radix-ui/react-separator": "latest",
"@radix-ui/react-slot": "latest",
"@radix-ui/react-toggle": "latest",
"@radix-ui/react-use-callback-ref": "latest",
"@radix-ui/react-use-controllable-state": "latest",
"@radix-ui/react-use-escape-keydown": "latest",
"@radix-ui/react-use-layout-effect": "latest",
"@radix-ui/react-use-previous": "latest",
"@radix-ui/react-use-rect": "latest",
"@radix-ui/react-use-size": "latest",
"@radix-ui/react-visually-hidden": "latest",
"@radix-ui/rect": "latest",
"@react-aria/ssr": "latest",
"@react-aria/utils": "latest",
"@react-native/normalize-colors": "latest",
"@react-stately/utils": "latest",
"@reduxjs/toolkit": "latest",
"@remix-run/router": "latest",
"@repeaterjs/repeater": "latest",
"@rtsao/scc": "latest",
"@semantic-release/error": "latest",
"@sentry-internal/feedback": "latest",
"@sentry-internal/replay-canvas": "latest",
"@sentry-internal/tracing": "latest",
"@sentry/browser": "latest",
"@sentry/cli": "latest",
"@sentry/core": "latest",
"@sentry/hub": "latest",
"@sentry/integrations": "latest",
"@sentry/node": "latest",
"@sentry/react": "latest",
"@sentry/replay": "latest",
"@sentry/types": "latest",
"@sentry/utils": "latest",
"@sideway/address": "latest",
"@sideway/formula": "latest",
"@sideway/pinpoint": "latest",
"@sigstore/bundle": "latest",
"@sigstore/core": "latest",
"@sigstore/protobuf-specs": "latest",
"@sigstore/sign": "latest",
"@sigstore/tuf": "latest",
"@sigstore/verify": "latest",
"@sinclair/typebox": "latest",
"@sindresorhus/is": "latest",
"@sindresorhus/merge-streams": "latest",
"@sinonjs/commons": "latest",
"@sinonjs/fake-timers": "latest",
"@sinonjs/samsam": "latest",
"@sinonjs/text-encoding": "latest",
"@socket.io/component-emitter": "latest",
"@stoplight/types": "latest",
"@surma/rollup-plugin-off-main-thread": "latest",
"@svgr/babel-plugin-add-jsx-attribute": "latest",
"@svgr/babel-plugin-remove-jsx-attribute": "latest",
"@svgr/babel-plugin-remove-jsx-empty-expression": "latest",
"@svgr/babel-plugin-replace-jsx-attribute-value": "latest",
"@svgr/babel-plugin-svg-dynamic-title": "latest",
"@svgr/babel-plugin-svg-em-dimensions": "latest",
"@svgr/babel-plugin-transform-react-native-svg": "latest",
"@svgr/babel-plugin-transform-svg-component": "latest",
"@svgr/babel-preset": "latest",
"@svgr/core": "latest",
"@svgr/hast-util-to-babel-ast": "latest",
"@svgr/plugin-jsx": "latest",
"@svgr/plugin-svgo": "latest",
"@svgr/webpack": "latest",
"@szmarczak/http-timer": "latest",
"@tanstack/query-core": "latest",
"@tanstack/react-query": "latest",
"@tanstack/virtual-core": "latest",
"@testing-library/dom": "latest",
"@testing-library/react": "latest",
"@testing-library/user-event": "latest",
"@tootallnate/once": "latest",
"@tootallnate/quickjs-emscripten": "latest",
"@trysound/sax": "latest",
"@ts-morph/common": "latest",
"@tufjs/canonical-json": "latest",
"@tufjs/models": "latest",
"@turf/helpers": "latest",
"@turf/invariant": "latest",
"@turf/meta": "latest",
"@ungap/structured-clone": "latest",
"@vitejs/plugin-react": "latest",
"@vitejs/plugin-vue": "latest",
"@vitest/mocker": "latest",
"@vitest/pretty-format": "latest",
"@vitest/runner": "latest",
"@vitest/snapshot": "latest",
"@vitest/spy": "latest",
"@vitest/utils": "latest",
"@vue/compiler-core": "latest",
"@vue/compiler-dom": "latest",
"@vue/compiler-sfc": "latest",
"@vue/compiler-ssr": "latest",
"@vue/devtools-api": "latest",
"@vue/reactivity": "latest",
"@vue/runtime-core": "latest",
"@vue/runtime-dom": "latest",
"@vue/server-renderer": "latest",
"@vue/shared": "latest",
"@vueuse/core": "latest",
"@webassemblyjs/ast": "latest",
"@webassemblyjs/floating-point-hex-parser": "latest",
"@webassemblyjs/helper-api-error": "latest",
"@webassemblyjs/helper-buffer": "latest",
"@webassemblyjs/helper-code-frame": "latest",
"@webassemblyjs/helper-fsm": "latest",
"@webassemblyjs/helper-module-context": "latest",
"@webassemblyjs/helper-numbers": "latest",
"@webassemblyjs/helper-wasm-bytecode": "latest",
"@webassemblyjs/helper-wasm-section": "latest",
"@webassemblyjs/ieee754": "latest",
"@webassemblyjs/leb128": "latest",
"@webassemblyjs/utf8": "latest",
"@webassemblyjs/wasm-edit": "latest",
"@webassemblyjs/wasm-gen": "latest",
"@webassemblyjs/wasm-opt": "latest",
"@webassemblyjs/wasm-parser": "latest",
"@webassemblyjs/wast-parser": "latest",
"@webassemblyjs/wast-printer": "latest",
"@webpack-cli/configtest": "latest",
"@webpack-cli/info": "latest",
"@webpack-cli/serve": "latest",
"@whatwg-node/events": "latest",
"@whatwg-node/fetch": "latest",
"@whatwg-node/node-fetch": "latest",
"@wry/context": "latest",
"@wry/equality": "latest",
"@wry/trie": "latest",
"@xmldom/xmldom": "latest",
"@xtuc/ieee754": "latest",
"@xtuc/long": "latest",
"@yarnpkg/fslib": "latest",
"@yarnpkg/libzip": "latest",
"@yarnpkg/lockfile": "latest",
"@yarnpkg/parsers": "latest",
"@zkochan/js-yaml": "latest",
"JSONStream": "latest",
"abab": "latest",
"abbrev": "latest",
"abort-controller": "latest",
"abstract-leveldown": "latest",
"accepts": "latest",
"acorn": "latest",
"acorn-globals": "latest",
"acorn-import-assertions": "latest",
"acorn-import-attributes": "latest",
"acorn-jsx": "latest",
"acorn-node": "latest",
"acorn-walk": "latest",
"address": "latest",
"adjust-sourcemap-loader": "latest",
"adler-32": "latest",
"adm-zip": "latest",
"agent-base": "latest",
"agentkeepalive": "latest",
"aggregate-error": "latest",
"ajv": "latest",
"ajv-draft-04": "latest",
"ajv-errors": "latest",
"ajv-formats": "latest",
"ajv-keywords": "latest",
"align-text": "latest",
"alphanum-sort": "latest",
"amdefine": "latest",
"ansi-align": "latest",
"ansi-colors": "latest",
"ansi-escapes": "latest",
"ansi-html": "latest",
"ansi-html-community": "latest",
"ansi-regex": "latest",
"ansi-styles": "latest",
"ansi-wrap": "latest",
"ansicolors": "latest",
"any-promise": "latest",
"anymatch": "latest",
"app-root-dir": "latest",
"app-root-path": "latest",
"append-field": "latest",
"append-transform": "latest",
"aproba": "latest",
"arch": "latest",
"archiver": "latest",
"archiver-utils": "latest",
"archy": "latest",
"are-we-there-yet": "latest",
"arg": "latest",
"argparse": "latest",
"aria-hidden": "latest",
"aria-query": "latest",
"arr-diff": "latest",
"arr-flatten": "latest",
"arr-union": "latest",
"array-back": "latest",
"array-buffer-byte-length": "latest",
"array-differ": "latest",
"array-each": "latest",
"array-equal": "latest",
"array-find-index": "latest",
"array-flatten": "latest",
"array-ify": "latest",
"array-includes": "latest",
"array-slice": "latest",
"array-timsort": "latest",
"array-union": "latest",
"array-uniq": "latest",
"array-unique": "latest",
"array.prototype.findlast": "latest",
"array.prototype.findlastindex": "latest",
"array.prototype.flat": "latest",
"array.prototype.flatmap": "latest",
"array.prototype.reduce": "latest",
"array.prototype.tosorted": "latest",
"arraybuffer.prototype.slice": "latest",
"arrify": "latest",
"asap": "latest",
"asn1": "latest",
"asn1.js": "latest",
"asn1js": "latest",
"assert-plus": "latest",
"assertion-error": "latest",
"assign-symbols": "latest",
"ast-types": "latest",
"astral-regex": "latest",
"async": "latest",
"async-each": "latest",
"async-limiter": "latest",
"async-retry": "latest",
"asynckit": "latest",
"at-least-node": "latest",
"atob": "latest",
"atomic-sleep": "latest",
"attr-accept": "latest",
"auto-bind": "latest",
"autoprefixer": "latest",
"available-typed-arrays": "latest",
"aws-sdk": "latest",
"aws-sign2": "latest",
"aws4": "latest",
"axe-core": "latest",
"axios": "latest",
"axios-retry": "latest",
"axobject-query": "latest",
"b4a": "latest",
"babel-code-frame": "latest",
"babel-core": "latest",
"babel-eslint": "latest",
"babel-generator": "latest",
"babel-helper-call-delegate": "latest",
"babel-helper-define-map": "latest",
"babel-helper-function-name": "latest",
"babel-helper-get-function-arity": "latest",
"babel-helper-hoist-variables": "latest",
"babel-helper-optimise-call-expression": "latest",
"babel-helper-regex": "latest",
"babel-helper-replace-supers": "latest",
"babel-helpers": "latest",
"babel-jest": "latest",
"babel-loader": "latest",
"babel-messages": "latest",
"babel-plugin-check-es2015-constants": "latest",
"babel-plugin-dynamic-import-node": "latest",
"babel-plugin-istanbul": "latest",
"babel-plugin-jest-hoist": "latest",
"babel-plugin-macros": "latest",
"babel-plugin-named-asset-import": "latest",
"babel-plugin-polyfill-corejs2": "latest",
"babel-plugin-polyfill-corejs3": "latest",
"babel-plugin-polyfill-regenerator": "latest",
"babel-plugin-styled-components": "latest",
"babel-plugin-syntax-jsx": "latest",
"babel-plugin-syntax-object-rest-spread": "latest",
"babel-plugin-syntax-trailing-function-commas": "latest",
"babel-plugin-transform-es2015-arrow-functions": "latest",
"babel-plugin-transform-es2015-block-scoped-functions": "latest",
"babel-plugin-transform-es2015-block-scoping": "latest",
"babel-plugin-transform-es2015-classes": "latest",
"babel-plugin-transform-es2015-computed-properties": "latest",
"babel-plugin-transform-es2015-destructuring": "latest",
"babel-plugin-transform-es2015-duplicate-keys": "latest",
"babel-plugin-transform-es2015-for-of": "latest",
"babel-plugin-transform-es2015-function-name": "latest",
"babel-plugin-transform-es2015-literals": "latest",
"babel-plugin-transform-es2015-modules-amd": "latest",
"babel-plugin-transform-es2015-modules-commonjs": "latest",
"babel-plugin-transform-es2015-modules-systemjs": "latest",
"babel-plugin-transform-es2015-modules-umd": "latest",
"babel-plugin-transform-es2015-object-super": "latest",
"babel-plugin-transform-es2015-parameters": "latest",
"babel-plugin-transform-es2015-shorthand-properties": "latest",
"babel-plugin-transform-es2015-spread": "latest",
"babel-plugin-transform-es2015-sticky-regex": "latest",
"babel-plugin-transform-es2015-template-literals": "latest",
"babel-plugin-transform-es2015-typeof-symbol": "latest",
"babel-plugin-transform-es2015-unicode-regex": "latest",
"babel-plugin-transform-react-remove-prop-types": "latest",
"babel-plugin-transform-regenerator": "latest",
"babel-plugin-transform-strict-mode": "latest",
"babel-polyfill": "latest",
"babel-preset-current-node-syntax": "latest",
"babel-preset-fbjs": "latest",
"babel-preset-jest": "latest",
"babel-preset-react-app": "latest",
"babel-register": "latest",
"babel-template": "latest",
"babel-traverse": "latest",
"babel-types": "latest",
"babylon": "latest",
"backo2": "latest",
"bail": "latest",
"balanced-match": "latest",
"bare-events": "latest",
"bare-stream": "latest",
"base": "latest",
"base-x": "latest",
"base64-arraybuffer": "latest",
"base64-js": "latest",
"base64id": "latest",
"base64url": "latest",
"basic-auth": "latest",
"basic-ftp": "latest",
"batch": "latest",
"bcrypt-pbkdf": "latest",
"before-after-hook": "latest",
"better-opn": "latest",
"bfj": "latest",
"big-integer": "latest",
"big.js": "latest",
"bignumber.js": "latest",
"bin-links": "latest",
"binary": "latest",
"binary-extensions": "latest",
"bindings": "latest",
"bl": "latest",
"blob-util": "latest",
"bluebird": "latest",
"bn.js": "latest",
"body-parser": "latest",
"bonjour": "latest",
"bonjour-service": "latest",
"boolbase": "latest",
"boolean": "latest",
"boom": "latest",
"bottleneck": "latest",
"bowser": "latest",
"boxen": "latest",
"bplist-parser": "latest",
"brace-expansion": "latest",
"braces": "latest",
"brorand": "latest",
"brotli": "latest",
"browser-assert": "latest",
"browser-process-hrtime": "latest",
"browser-resolve": "latest",
"browser-stdout": "latest",
"browserify-aes": "latest",
"browserify-cipher": "latest",
"browserify-des": "latest",
"browserify-rsa": "latest",
"browserify-sign": "latest",
"browserify-zlib": "latest",
"browserslist": "latest",
"bs-logger": "latest",
"bser": "latest",
"bson": "latest",
"btoa": "latest",
"buffer": "latest",
"buffer-alloc": "latest",
"buffer-alloc-unsafe": "latest",
"buffer-crc32": "latest",
"buffer-equal": "latest",
"buffer-equal-constant-time": "latest",
"buffer-fill": "latest",
"buffer-from": "latest",
"buffer-indexof": "latest",
"buffer-indexof-polyfill": "latest",
"buffer-xor": "latest",
"buffers": "latest",
"buildcheck": "latest",
"builtin-modules": "latest",
"builtin-status-codes": "latest",
"builtins": "latest",
"bundle-name": "latest",
"busboy": "latest",
"bytes": "latest",
"cac": "latest",
"cacache": "latest",
"cache-base": "latest",
"cacheable-lookup": "latest",
"cacheable-request": "latest",
"cachedir": "latest",
"caching-transform": "latest",
"call-bind": "latest",
"call-me-maybe": "latest",
"caller-callsite": "latest",
"caller-path": "latest",
"callsite": "latest",
"callsites": "latest",
"camel-case": "latest",
"camelcase": "latest",
"camelcase-css": "latest",
"camelcase-keys": "latest",
"camelize": "latest",
"caniuse-api": "latest",
"caniuse-lite": "latest",
"capital-case": "latest",
"capture-exit": "latest",
"cardinal": "latest",
"case-sensitive-paths-webpack-plugin": "latest",
"caseless": "latest",
"ccount": "latest",
"center-align": "latest",
"chai": "latest",
"chainsaw": "latest",
"chalk": "latest",
"change-case": "latest",
"change-case-all": "latest",
"char-regex": "latest",
"character-entities": "latest",
"character-entities-html4": "latest",
"character-entities-legacy": "latest",
"character-reference-invalid": "latest",
"chardet": "latest",
"charenc": "latest",
"chart.js": "latest",
"check-error": "latest",
"check-more-types": "latest",
"check-types": "latest",
"cheerio": "latest",
"cheerio-select": "latest",
"chokidar": "latest",
"chownr": "latest",
"chrome-launcher": "latest",
"chrome-trace-event": "latest",
"ci-info": "latest",
"cipher-base": "latest",
"circular-json": "latest",
"citty": "latest",
"cjs-module-lexer": "latest",
"class-transformer": "latest",
"class-utils": "latest",
"class-validator": "latest",
"classnames": "latest",
"clean-css": "latest",
"clean-regexp": "latest",
"clean-stack": "latest",
"cli-boxes": "latest",
"cli-color": "latest",
"cli-cursor": "latest",
"cli-highlight": "latest",
"cli-progress": "latest",
"cli-spinners": "latest",
"cli-table": "latest",
"cli-table3": "latest",
"cli-truncate": "latest",
"cli-width": "latest",
"client-only": "latest",
"clipboardy": "latest",
"cliui": "latest",
"clone": "latest",
"clone-buffer": "latest",
"clone-deep": "latest",
"clone-response": "latest",
"clone-stats": "latest",
"cloneable-readable": "latest",
"clsx": "latest",
"cluster-key-slot": "latest",
"cmd-shim": "latest",
"co": "latest",
"coa": "latest",
"code-block-writer": "latest",
"code-point-at": "latest",
"collapse-white-space": "latest",
"collect-v8-coverage": "latest",
"collection-visit": "latest",
"color": "latest",
"color-convert": "latest",
"color-name": "latest",
"color-string": "latest",
"color-support": "latest",
"colord": "latest",
"colorette": "latest",
"colors": "latest",
"colorspace": "latest",
"columnify": "latest",
"combined-stream": "latest",
"comma-separated-tokens": "latest",
"command-exists": "latest",
"commander": "latest",
"comment-json": "latest",
"comment-parser": "latest",
"common-ancestor-path": "latest",
"common-path-prefix": "latest",
"common-tags": "latest",
"commondir": "latest",
"compare-func": "latest",
"compare-versions": "latest",
"component-emitter": "latest",
"compress-commons": "latest",
"compressible": "latest",
"compression": "latest",
"compute-scroll-into-view": "latest",
"concat-map": "latest",
"concat-stream": "latest",
"concurrently": "latest",
"confbox": "latest",
"config-chain": "latest",
"configstore": "latest",
"confusing-browser-globals": "latest",
"connect": "latest",
"connect-history-api-fallback": "latest",
"consola": "latest",
"console-browserify": "latest",
"console-control-strings": "latest",
"constant-case": "latest",
"contains-path": "latest",
"content-disposition": "latest",
"content-type": "latest",
"conventional-changelog-angular": "latest",
"conventional-changelog-conventionalcommits": "latest",
"conventional-changelog-core": "latest",
"conventional-changelog-preset-loader": "latest",
"conventional-changelog-writer": "latest",
"conventional-commits-filter": "latest",
"conventional-commits-parser": "latest",
"convert-source-map": "latest",
"cookie": "latest",
"cookie-parser": "latest",
"cookie-signature": "latest",
"cookiejar": "latest",
"cookies": "latest",
"copy-anything": "latest",