-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage-lock.json
More file actions
8052 lines (8052 loc) · 318 KB
/
package-lock.json
File metadata and controls
8052 lines (8052 loc) · 318 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
{
"name": "automation-action-ui-kit",
"version": "1.1.10",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "automation-action-ui-kit",
"version": "1.1.10",
"license": "MIT",
"dependencies": {
"@forge/api": "^7.0.2",
"@forge/bridge": "5.13.0",
"@forge/react": "11.12.0",
"@forge/resolver": "1.7.1",
"react": "^18.2.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0"
}
},
"node_modules/@atlaskit/adf-schema": {
"version": "48.0.0",
"resolved": "https://registry.npmjs.org/@atlaskit/adf-schema/-/adf-schema-48.0.0.tgz",
"integrity": "sha512-zzPhx1zsiAL2zSR9APrw6CMNxAGMerjjNgc0AeqQWZjSuh4U18THv77o4buS9QPdUn2S8BztBNiEbB7bP9wNRw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/editor-prosemirror": "*",
"@atlaskit/feature-gate-js-client": "^4.26.4",
"@babel/runtime": "^7.0.0",
"css-color-names": "0.0.4",
"linkify-it": "^2.0.3",
"memoize-one": "^6.0.0"
}
},
"node_modules/@atlaskit/adf-utils": {
"version": "19.20.1",
"resolved": "https://registry.npmjs.org/@atlaskit/adf-utils/-/adf-utils-19.20.1.tgz",
"integrity": "sha512-i2sY8GiYDwXSOb/yxqpOIo1fEH3tVXfid/YvpXox6GrxsrF1lEHTMfi4vnYpoi1FOArxDSzC09u3OU4EqjetXA==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/adf-schema": "^49.0.6",
"@babel/runtime": "^7.0.0"
}
},
"node_modules/@atlaskit/adf-utils/node_modules/@atlaskit/adf-schema": {
"version": "49.0.6",
"resolved": "https://registry.npmjs.org/@atlaskit/adf-schema/-/adf-schema-49.0.6.tgz",
"integrity": "sha512-AMMNdjsL98C4pP539bDCqnWinQ9x6IhdyJWpdEu8PYYcXKF7wDlZT30j2wnNmXaTa0FX13YSzqfLLc4Ff6eUMQ==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/editor-prosemirror": "*",
"@atlaskit/feature-gate-js-client": "^4.26.4",
"@babel/runtime": "^7.26.10",
"css-color-names": "0.0.4",
"linkify-it": "^2.0.3",
"memoize-one": "^6.0.0"
}
},
"node_modules/@atlaskit/analytics-next": {
"version": "11.1.4",
"resolved": "https://registry.npmjs.org/@atlaskit/analytics-next/-/analytics-next-11.1.4.tgz",
"integrity": "sha512-byzAEKoniZsXSDxAhoxwRc1xXDT9IbRboA1fy2drc+MB4HHlQALFvyH4JJbSeW76Dp+CU6YpVNEg39fSsws0hA==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/analytics-next-stable-react-context": "1.0.1",
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"prop-types": "^15.5.10",
"use-memo-one": "^1.1.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
},
"node_modules/@atlaskit/analytics-next-stable-react-context": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@atlaskit/analytics-next-stable-react-context/-/analytics-next-stable-react-context-1.0.1.tgz",
"integrity": "sha512-iO6+hIp09dF4iAZQarVz3vKY1kM5Ij5CExYcK9jgc2q+OH8nv8n+BPFeJTdzGOGopmbUZn5Opj9pYQvge1Gr4Q==",
"license": "Apache-2.0",
"dependencies": {
"tslib": "^2.0.0"
},
"peerDependencies": {
"react": "^16.8.0"
}
},
"node_modules/@atlaskit/analytics-next/node_modules/@atlaskit/atlassian-context": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/@atlaskit/atlassian-context/-/atlassian-context-0.6.0.tgz",
"integrity": "sha512-TjaV1OIjP8DaOyaqzPI5OkYvVckn3hYwE92v8RcdnpOiMKI0taedg1sLXD7x0nPx5MtXPmCJNNVJJprDN7pmxQ==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/analytics-next/node_modules/@atlaskit/feature-gate-js-client": {
"version": "5.5.7",
"resolved": "https://registry.npmjs.org/@atlaskit/feature-gate-js-client/-/feature-gate-js-client-5.5.7.tgz",
"integrity": "sha512-m2ATuJChdHLJdFxpfm5HPnBzjtg8yJFLdZmZguP24oFJI1562y7JbOSEmrRtbzyOIuuqjSUrcNA/el3+srkjrw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/atlassian-context": "^0.6.0",
"@babel/runtime": "^7.0.0",
"@statsig/client-core": "^3.21.1",
"@statsig/js-client": "^3.21.1",
"eventemitter3": "^4.0.0"
}
},
"node_modules/@atlaskit/analytics-next/node_modules/@atlaskit/platform-feature-flags": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@atlaskit/platform-feature-flags/-/platform-feature-flags-1.1.3.tgz",
"integrity": "sha512-dRn6UvVmMF5+WXnv7ZlxKTV2rVQncI2TgM0KTGSqpHdD9LnogITWC/rFjzUuF/W8MBCEvpouGilukqhq6rASnw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/feature-gate-js-client": "^5.5.0",
"@babel/runtime": "^7.0.0"
}
},
"node_modules/@atlaskit/app-provider": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/@atlaskit/app-provider/-/app-provider-4.1.0.tgz",
"integrity": "sha512-n6M1QVOxa+lDO9bPnxNmLhDUkUxAspkMd9/COPieg8qge3eb1qi498MI2+pUyx+PpG02E1HyLivVJDHYhmuCFg==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/browser-apis": "^0.0.1",
"@atlaskit/css": "^0.19.0",
"@atlaskit/platform-feature-flags": "^1.1.0",
"@atlaskit/tokens": "^11.0.0",
"@babel/runtime": "^7.0.0",
"bind-event-listener": "^3.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/app-provider/node_modules/@atlaskit/atlassian-context": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/@atlaskit/atlassian-context/-/atlassian-context-0.6.0.tgz",
"integrity": "sha512-TjaV1OIjP8DaOyaqzPI5OkYvVckn3hYwE92v8RcdnpOiMKI0taedg1sLXD7x0nPx5MtXPmCJNNVJJprDN7pmxQ==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/app-provider/node_modules/@atlaskit/ds-lib": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/ds-lib/-/ds-lib-5.3.0.tgz",
"integrity": "sha512-j3DLHqBACSJsG3XqSgCIwZqvJhYkpSC8i+24n/JYCRjIxYEJMsuSXOtdeu0qBajREwgzmAFP6AVfVZh1zAWG/A==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"bind-event-listener": "^3.0.0",
"react-uid": "^2.2.0",
"tiny-invariant": "^1.2.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/app-provider/node_modules/@atlaskit/feature-gate-js-client": {
"version": "5.5.7",
"resolved": "https://registry.npmjs.org/@atlaskit/feature-gate-js-client/-/feature-gate-js-client-5.5.7.tgz",
"integrity": "sha512-m2ATuJChdHLJdFxpfm5HPnBzjtg8yJFLdZmZguP24oFJI1562y7JbOSEmrRtbzyOIuuqjSUrcNA/el3+srkjrw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/atlassian-context": "^0.6.0",
"@babel/runtime": "^7.0.0",
"@statsig/client-core": "^3.21.1",
"@statsig/js-client": "^3.21.1",
"eventemitter3": "^4.0.0"
}
},
"node_modules/@atlaskit/app-provider/node_modules/@atlaskit/platform-feature-flags": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@atlaskit/platform-feature-flags/-/platform-feature-flags-1.1.3.tgz",
"integrity": "sha512-dRn6UvVmMF5+WXnv7ZlxKTV2rVQncI2TgM0KTGSqpHdD9LnogITWC/rFjzUuF/W8MBCEvpouGilukqhq6rASnw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/feature-gate-js-client": "^5.5.0",
"@babel/runtime": "^7.0.0"
}
},
"node_modules/@atlaskit/app-provider/node_modules/@atlaskit/tokens": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-11.0.0.tgz",
"integrity": "sha512-uAej+DW3Oujh2sdEK7NqzQtKof0XQzfRx5cX9wBvag/rYQwAclYWLQ17LqNzJhwaF7SQykFnWKucsL3Y4Cmo3Q==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/ds-lib": "^5.3.0",
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.20.0",
"bind-event-listener": "^3.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/atlassian-context": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@atlaskit/atlassian-context/-/atlassian-context-0.2.0.tgz",
"integrity": "sha512-msLRSp0qck6eflkShplgyIoOogNKxKRc6QIWGQlSvKGxHQNEbLEkRGcDzdh8PuBxSs1gda7OqYrdtQYQiPbpTQ==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/avatar": {
"version": "25.7.4",
"resolved": "https://registry.npmjs.org/@atlaskit/avatar/-/avatar-25.7.4.tgz",
"integrity": "sha512-Oxurr1xssvX7mY4n7cTjwQjxTQF/qBFxALVJnAHvxjm0ILRvd0Rj+p3OPeiLXRNUW+Vlrpu2KVR4W0nLpAvC3A==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/analytics-next": "^11.1.0",
"@atlaskit/css": "^0.19.0",
"@atlaskit/ds-lib": "^5.3.0",
"@atlaskit/icon": "^30.0.0",
"@atlaskit/platform-feature-flags": "^1.1.0",
"@atlaskit/primitives": "^18.0.0",
"@atlaskit/theme": "^21.0.0",
"@atlaskit/tokens": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@compiled/react": "^0.18.6"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/avatar/node_modules/@atlaskit/atlassian-context": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/@atlaskit/atlassian-context/-/atlassian-context-0.6.0.tgz",
"integrity": "sha512-TjaV1OIjP8DaOyaqzPI5OkYvVckn3hYwE92v8RcdnpOiMKI0taedg1sLXD7x0nPx5MtXPmCJNNVJJprDN7pmxQ==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/avatar/node_modules/@atlaskit/ds-lib": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/ds-lib/-/ds-lib-5.3.0.tgz",
"integrity": "sha512-j3DLHqBACSJsG3XqSgCIwZqvJhYkpSC8i+24n/JYCRjIxYEJMsuSXOtdeu0qBajREwgzmAFP6AVfVZh1zAWG/A==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"bind-event-listener": "^3.0.0",
"react-uid": "^2.2.0",
"tiny-invariant": "^1.2.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/avatar/node_modules/@atlaskit/feature-gate-js-client": {
"version": "5.5.7",
"resolved": "https://registry.npmjs.org/@atlaskit/feature-gate-js-client/-/feature-gate-js-client-5.5.7.tgz",
"integrity": "sha512-m2ATuJChdHLJdFxpfm5HPnBzjtg8yJFLdZmZguP24oFJI1562y7JbOSEmrRtbzyOIuuqjSUrcNA/el3+srkjrw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/atlassian-context": "^0.6.0",
"@babel/runtime": "^7.0.0",
"@statsig/client-core": "^3.21.1",
"@statsig/js-client": "^3.21.1",
"eventemitter3": "^4.0.0"
}
},
"node_modules/@atlaskit/avatar/node_modules/@atlaskit/platform-feature-flags": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@atlaskit/platform-feature-flags/-/platform-feature-flags-1.1.3.tgz",
"integrity": "sha512-dRn6UvVmMF5+WXnv7ZlxKTV2rVQncI2TgM0KTGSqpHdD9LnogITWC/rFjzUuF/W8MBCEvpouGilukqhq6rASnw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/feature-gate-js-client": "^5.5.0",
"@babel/runtime": "^7.0.0"
}
},
"node_modules/@atlaskit/avatar/node_modules/@atlaskit/tokens": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-11.0.0.tgz",
"integrity": "sha512-uAej+DW3Oujh2sdEK7NqzQtKof0XQzfRx5cX9wBvag/rYQwAclYWLQ17LqNzJhwaF7SQykFnWKucsL3Y4Cmo3Q==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/ds-lib": "^5.3.0",
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.20.0",
"bind-event-listener": "^3.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/badge": {
"version": "18.4.0",
"resolved": "https://registry.npmjs.org/@atlaskit/badge/-/badge-18.4.0.tgz",
"integrity": "sha512-x+RQwZveKxVoNwtPCH/pmNZ8OSd9pbX6fsDta269VLy9gdK98tvlnbBB2KW/gHq3qAPSTymRoVruoEHeLhv6HA==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/platform-feature-flags": "^1.1.0",
"@atlaskit/primitives": "^18.0.0",
"@atlaskit/tokens": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@compiled/react": "^0.18.6"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/badge/node_modules/@atlaskit/atlassian-context": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/@atlaskit/atlassian-context/-/atlassian-context-0.6.0.tgz",
"integrity": "sha512-TjaV1OIjP8DaOyaqzPI5OkYvVckn3hYwE92v8RcdnpOiMKI0taedg1sLXD7x0nPx5MtXPmCJNNVJJprDN7pmxQ==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/badge/node_modules/@atlaskit/ds-lib": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/ds-lib/-/ds-lib-5.3.0.tgz",
"integrity": "sha512-j3DLHqBACSJsG3XqSgCIwZqvJhYkpSC8i+24n/JYCRjIxYEJMsuSXOtdeu0qBajREwgzmAFP6AVfVZh1zAWG/A==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"bind-event-listener": "^3.0.0",
"react-uid": "^2.2.0",
"tiny-invariant": "^1.2.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/badge/node_modules/@atlaskit/feature-gate-js-client": {
"version": "5.5.7",
"resolved": "https://registry.npmjs.org/@atlaskit/feature-gate-js-client/-/feature-gate-js-client-5.5.7.tgz",
"integrity": "sha512-m2ATuJChdHLJdFxpfm5HPnBzjtg8yJFLdZmZguP24oFJI1562y7JbOSEmrRtbzyOIuuqjSUrcNA/el3+srkjrw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/atlassian-context": "^0.6.0",
"@babel/runtime": "^7.0.0",
"@statsig/client-core": "^3.21.1",
"@statsig/js-client": "^3.21.1",
"eventemitter3": "^4.0.0"
}
},
"node_modules/@atlaskit/badge/node_modules/@atlaskit/platform-feature-flags": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@atlaskit/platform-feature-flags/-/platform-feature-flags-1.1.3.tgz",
"integrity": "sha512-dRn6UvVmMF5+WXnv7ZlxKTV2rVQncI2TgM0KTGSqpHdD9LnogITWC/rFjzUuF/W8MBCEvpouGilukqhq6rASnw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/feature-gate-js-client": "^5.5.0",
"@babel/runtime": "^7.0.0"
}
},
"node_modules/@atlaskit/badge/node_modules/@atlaskit/tokens": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-11.0.0.tgz",
"integrity": "sha512-uAej+DW3Oujh2sdEK7NqzQtKof0XQzfRx5cX9wBvag/rYQwAclYWLQ17LqNzJhwaF7SQykFnWKucsL3Y4Cmo3Q==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/ds-lib": "^5.3.0",
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.20.0",
"bind-event-listener": "^3.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/blanket": {
"version": "15.0.24",
"resolved": "https://registry.npmjs.org/@atlaskit/blanket/-/blanket-15.0.24.tgz",
"integrity": "sha512-ECg479A09I34PxHUPn9H+cgX5CfCyupHv1FINxnAK+sYOSPAQJgW+ACw1Gy80y2h2m85rS34DD6RgKrOayp/jg==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/analytics-next": "^11.1.0",
"@atlaskit/css": "^0.19.0",
"@atlaskit/ds-lib": "^5.3.0",
"@atlaskit/theme": "^21.0.0",
"@atlaskit/tokens": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@compiled/react": "^0.18.6"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/blanket/node_modules/@atlaskit/atlassian-context": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/@atlaskit/atlassian-context/-/atlassian-context-0.6.0.tgz",
"integrity": "sha512-TjaV1OIjP8DaOyaqzPI5OkYvVckn3hYwE92v8RcdnpOiMKI0taedg1sLXD7x0nPx5MtXPmCJNNVJJprDN7pmxQ==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/blanket/node_modules/@atlaskit/ds-lib": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/ds-lib/-/ds-lib-5.3.0.tgz",
"integrity": "sha512-j3DLHqBACSJsG3XqSgCIwZqvJhYkpSC8i+24n/JYCRjIxYEJMsuSXOtdeu0qBajREwgzmAFP6AVfVZh1zAWG/A==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"bind-event-listener": "^3.0.0",
"react-uid": "^2.2.0",
"tiny-invariant": "^1.2.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/blanket/node_modules/@atlaskit/feature-gate-js-client": {
"version": "5.5.7",
"resolved": "https://registry.npmjs.org/@atlaskit/feature-gate-js-client/-/feature-gate-js-client-5.5.7.tgz",
"integrity": "sha512-m2ATuJChdHLJdFxpfm5HPnBzjtg8yJFLdZmZguP24oFJI1562y7JbOSEmrRtbzyOIuuqjSUrcNA/el3+srkjrw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/atlassian-context": "^0.6.0",
"@babel/runtime": "^7.0.0",
"@statsig/client-core": "^3.21.1",
"@statsig/js-client": "^3.21.1",
"eventemitter3": "^4.0.0"
}
},
"node_modules/@atlaskit/blanket/node_modules/@atlaskit/platform-feature-flags": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@atlaskit/platform-feature-flags/-/platform-feature-flags-1.1.3.tgz",
"integrity": "sha512-dRn6UvVmMF5+WXnv7ZlxKTV2rVQncI2TgM0KTGSqpHdD9LnogITWC/rFjzUuF/W8MBCEvpouGilukqhq6rASnw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/feature-gate-js-client": "^5.5.0",
"@babel/runtime": "^7.0.0"
}
},
"node_modules/@atlaskit/blanket/node_modules/@atlaskit/tokens": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-11.0.0.tgz",
"integrity": "sha512-uAej+DW3Oujh2sdEK7NqzQtKof0XQzfRx5cX9wBvag/rYQwAclYWLQ17LqNzJhwaF7SQykFnWKucsL3Y4Cmo3Q==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/ds-lib": "^5.3.0",
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.20.0",
"bind-event-listener": "^3.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/browser-apis": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/@atlaskit/browser-apis/-/browser-apis-0.0.1.tgz",
"integrity": "sha512-XKy1lSkezw6o6D4WBuZrpezwwSHhzwMpiGAkVvaLUZF1WJ+nleQaQk3VEZwEOdmUXvIfIJnTbE1QxqsmsehUbQ==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/button": {
"version": "23.9.6",
"resolved": "https://registry.npmjs.org/@atlaskit/button/-/button-23.9.6.tgz",
"integrity": "sha512-jO7uugpob+k2fTDdFoFV2hdFr9jxQnN3dn2e+OlLsbc/13g9ktDbK0QcQbFqUPtV+Ek1uMTXswUDYDQFSzrnnw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/analytics-next": "^11.1.0",
"@atlaskit/css": "^0.19.0",
"@atlaskit/ds-lib": "^5.3.0",
"@atlaskit/focus-ring": "^3.0.0",
"@atlaskit/icon": "^30.0.0",
"@atlaskit/interaction-context": "^3.1.0",
"@atlaskit/platform-feature-flags": "^1.1.0",
"@atlaskit/primitives": "^18.0.0",
"@atlaskit/spinner": "^19.0.0",
"@atlaskit/theme": "^21.0.0",
"@atlaskit/tokens": "^11.0.0",
"@atlaskit/tooltip": "^20.14.0",
"@atlaskit/visually-hidden": "^3.0.0",
"@babel/runtime": "^7.0.0",
"@compiled/react": "^0.18.6",
"@emotion/react": "^11.7.1"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/button/node_modules/@atlaskit/atlassian-context": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/@atlaskit/atlassian-context/-/atlassian-context-0.6.0.tgz",
"integrity": "sha512-TjaV1OIjP8DaOyaqzPI5OkYvVckn3hYwE92v8RcdnpOiMKI0taedg1sLXD7x0nPx5MtXPmCJNNVJJprDN7pmxQ==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/button/node_modules/@atlaskit/ds-lib": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/ds-lib/-/ds-lib-5.3.0.tgz",
"integrity": "sha512-j3DLHqBACSJsG3XqSgCIwZqvJhYkpSC8i+24n/JYCRjIxYEJMsuSXOtdeu0qBajREwgzmAFP6AVfVZh1zAWG/A==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"bind-event-listener": "^3.0.0",
"react-uid": "^2.2.0",
"tiny-invariant": "^1.2.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/button/node_modules/@atlaskit/feature-gate-js-client": {
"version": "5.5.7",
"resolved": "https://registry.npmjs.org/@atlaskit/feature-gate-js-client/-/feature-gate-js-client-5.5.7.tgz",
"integrity": "sha512-m2ATuJChdHLJdFxpfm5HPnBzjtg8yJFLdZmZguP24oFJI1562y7JbOSEmrRtbzyOIuuqjSUrcNA/el3+srkjrw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/atlassian-context": "^0.6.0",
"@babel/runtime": "^7.0.0",
"@statsig/client-core": "^3.21.1",
"@statsig/js-client": "^3.21.1",
"eventemitter3": "^4.0.0"
}
},
"node_modules/@atlaskit/button/node_modules/@atlaskit/platform-feature-flags": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@atlaskit/platform-feature-flags/-/platform-feature-flags-1.1.3.tgz",
"integrity": "sha512-dRn6UvVmMF5+WXnv7ZlxKTV2rVQncI2TgM0KTGSqpHdD9LnogITWC/rFjzUuF/W8MBCEvpouGilukqhq6rASnw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/feature-gate-js-client": "^5.5.0",
"@babel/runtime": "^7.0.0"
}
},
"node_modules/@atlaskit/button/node_modules/@atlaskit/tokens": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-11.0.0.tgz",
"integrity": "sha512-uAej+DW3Oujh2sdEK7NqzQtKof0XQzfRx5cX9wBvag/rYQwAclYWLQ17LqNzJhwaF7SQykFnWKucsL3Y4Cmo3Q==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/ds-lib": "^5.3.0",
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.20.0",
"bind-event-listener": "^3.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/calendar": {
"version": "17.2.6",
"resolved": "https://registry.npmjs.org/@atlaskit/calendar/-/calendar-17.2.6.tgz",
"integrity": "sha512-r9m+9djnOHTUv2zt0oCw0BrQ/CkL1QQzlkznrOaPfSAsG6mfygQW/ewF7qBJ66YanCCIYNIs3ZBUASczCuk3yw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/analytics-next": "^11.1.0",
"@atlaskit/button": "^23.9.0",
"@atlaskit/css": "^0.19.0",
"@atlaskit/ds-lib": "^5.3.0",
"@atlaskit/heading": "^5.2.0",
"@atlaskit/icon": "^30.0.0",
"@atlaskit/locale": "^3.0.0",
"@atlaskit/platform-feature-flags": "^1.1.0",
"@atlaskit/primitives": "^18.0.0",
"@atlaskit/theme": "^21.0.0",
"@atlaskit/tokens": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@compiled/react": "^0.18.6",
"date-fns": "^2.17.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/calendar/node_modules/@atlaskit/atlassian-context": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/@atlaskit/atlassian-context/-/atlassian-context-0.6.0.tgz",
"integrity": "sha512-TjaV1OIjP8DaOyaqzPI5OkYvVckn3hYwE92v8RcdnpOiMKI0taedg1sLXD7x0nPx5MtXPmCJNNVJJprDN7pmxQ==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/calendar/node_modules/@atlaskit/ds-lib": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/ds-lib/-/ds-lib-5.3.0.tgz",
"integrity": "sha512-j3DLHqBACSJsG3XqSgCIwZqvJhYkpSC8i+24n/JYCRjIxYEJMsuSXOtdeu0qBajREwgzmAFP6AVfVZh1zAWG/A==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"bind-event-listener": "^3.0.0",
"react-uid": "^2.2.0",
"tiny-invariant": "^1.2.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/calendar/node_modules/@atlaskit/feature-gate-js-client": {
"version": "5.5.7",
"resolved": "https://registry.npmjs.org/@atlaskit/feature-gate-js-client/-/feature-gate-js-client-5.5.7.tgz",
"integrity": "sha512-m2ATuJChdHLJdFxpfm5HPnBzjtg8yJFLdZmZguP24oFJI1562y7JbOSEmrRtbzyOIuuqjSUrcNA/el3+srkjrw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/atlassian-context": "^0.6.0",
"@babel/runtime": "^7.0.0",
"@statsig/client-core": "^3.21.1",
"@statsig/js-client": "^3.21.1",
"eventemitter3": "^4.0.0"
}
},
"node_modules/@atlaskit/calendar/node_modules/@atlaskit/platform-feature-flags": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@atlaskit/platform-feature-flags/-/platform-feature-flags-1.1.3.tgz",
"integrity": "sha512-dRn6UvVmMF5+WXnv7ZlxKTV2rVQncI2TgM0KTGSqpHdD9LnogITWC/rFjzUuF/W8MBCEvpouGilukqhq6rASnw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/feature-gate-js-client": "^5.5.0",
"@babel/runtime": "^7.0.0"
}
},
"node_modules/@atlaskit/calendar/node_modules/@atlaskit/tokens": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-11.0.0.tgz",
"integrity": "sha512-uAej+DW3Oujh2sdEK7NqzQtKof0XQzfRx5cX9wBvag/rYQwAclYWLQ17LqNzJhwaF7SQykFnWKucsL3Y4Cmo3Q==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/ds-lib": "^5.3.0",
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.20.0",
"bind-event-listener": "^3.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/comment": {
"version": "13.2.5",
"resolved": "https://registry.npmjs.org/@atlaskit/comment/-/comment-13.2.5.tgz",
"integrity": "sha512-u5iRsnkHYen9CK/5U1LF+uSKILQWhGUjxh5/IDlFK/S8MC9swaia33PNVaR3+2aQBCyPYuCUT/ZlR8SsrtPrzw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/analytics-next": "^11.1.0",
"@atlaskit/button": "^23.9.0",
"@atlaskit/css": "^0.19.0",
"@atlaskit/icon": "^30.0.0",
"@atlaskit/lozenge": "^13.3.0",
"@atlaskit/platform-feature-flags": "^1.1.0",
"@atlaskit/primitives": "^18.0.0",
"@atlaskit/theme": "^21.0.0",
"@atlaskit/tokens": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@compiled/react": "^0.18.6"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/comment/node_modules/@atlaskit/atlassian-context": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/@atlaskit/atlassian-context/-/atlassian-context-0.6.0.tgz",
"integrity": "sha512-TjaV1OIjP8DaOyaqzPI5OkYvVckn3hYwE92v8RcdnpOiMKI0taedg1sLXD7x0nPx5MtXPmCJNNVJJprDN7pmxQ==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/comment/node_modules/@atlaskit/ds-lib": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/ds-lib/-/ds-lib-5.3.0.tgz",
"integrity": "sha512-j3DLHqBACSJsG3XqSgCIwZqvJhYkpSC8i+24n/JYCRjIxYEJMsuSXOtdeu0qBajREwgzmAFP6AVfVZh1zAWG/A==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"bind-event-listener": "^3.0.0",
"react-uid": "^2.2.0",
"tiny-invariant": "^1.2.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/comment/node_modules/@atlaskit/feature-gate-js-client": {
"version": "5.5.7",
"resolved": "https://registry.npmjs.org/@atlaskit/feature-gate-js-client/-/feature-gate-js-client-5.5.7.tgz",
"integrity": "sha512-m2ATuJChdHLJdFxpfm5HPnBzjtg8yJFLdZmZguP24oFJI1562y7JbOSEmrRtbzyOIuuqjSUrcNA/el3+srkjrw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/atlassian-context": "^0.6.0",
"@babel/runtime": "^7.0.0",
"@statsig/client-core": "^3.21.1",
"@statsig/js-client": "^3.21.1",
"eventemitter3": "^4.0.0"
}
},
"node_modules/@atlaskit/comment/node_modules/@atlaskit/platform-feature-flags": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@atlaskit/platform-feature-flags/-/platform-feature-flags-1.1.3.tgz",
"integrity": "sha512-dRn6UvVmMF5+WXnv7ZlxKTV2rVQncI2TgM0KTGSqpHdD9LnogITWC/rFjzUuF/W8MBCEvpouGilukqhq6rASnw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/feature-gate-js-client": "^5.5.0",
"@babel/runtime": "^7.0.0"
}
},
"node_modules/@atlaskit/comment/node_modules/@atlaskit/tokens": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-11.0.0.tgz",
"integrity": "sha512-uAej+DW3Oujh2sdEK7NqzQtKof0XQzfRx5cX9wBvag/rYQwAclYWLQ17LqNzJhwaF7SQykFnWKucsL3Y4Cmo3Q==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/ds-lib": "^5.3.0",
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.20.0",
"bind-event-listener": "^3.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/css": {
"version": "0.19.2",
"resolved": "https://registry.npmjs.org/@atlaskit/css/-/css-0.19.2.tgz",
"integrity": "sha512-t2pA57vkVTa9TISbuyc3ggHznh5XDkEssKSeKt5+5tGOqPP068f/3T3PNdG1cQzkNVymTCheBhPWDdR9cpYaMQ==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/tokens": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@compiled/react": "^0.18.6"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/css/node_modules/@atlaskit/atlassian-context": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/@atlaskit/atlassian-context/-/atlassian-context-0.6.0.tgz",
"integrity": "sha512-TjaV1OIjP8DaOyaqzPI5OkYvVckn3hYwE92v8RcdnpOiMKI0taedg1sLXD7x0nPx5MtXPmCJNNVJJprDN7pmxQ==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/css/node_modules/@atlaskit/ds-lib": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/ds-lib/-/ds-lib-5.3.0.tgz",
"integrity": "sha512-j3DLHqBACSJsG3XqSgCIwZqvJhYkpSC8i+24n/JYCRjIxYEJMsuSXOtdeu0qBajREwgzmAFP6AVfVZh1zAWG/A==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"bind-event-listener": "^3.0.0",
"react-uid": "^2.2.0",
"tiny-invariant": "^1.2.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/css/node_modules/@atlaskit/feature-gate-js-client": {
"version": "5.5.7",
"resolved": "https://registry.npmjs.org/@atlaskit/feature-gate-js-client/-/feature-gate-js-client-5.5.7.tgz",
"integrity": "sha512-m2ATuJChdHLJdFxpfm5HPnBzjtg8yJFLdZmZguP24oFJI1562y7JbOSEmrRtbzyOIuuqjSUrcNA/el3+srkjrw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/atlassian-context": "^0.6.0",
"@babel/runtime": "^7.0.0",
"@statsig/client-core": "^3.21.1",
"@statsig/js-client": "^3.21.1",
"eventemitter3": "^4.0.0"
}
},
"node_modules/@atlaskit/css/node_modules/@atlaskit/platform-feature-flags": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@atlaskit/platform-feature-flags/-/platform-feature-flags-1.1.3.tgz",
"integrity": "sha512-dRn6UvVmMF5+WXnv7ZlxKTV2rVQncI2TgM0KTGSqpHdD9LnogITWC/rFjzUuF/W8MBCEvpouGilukqhq6rASnw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/feature-gate-js-client": "^5.5.0",
"@babel/runtime": "^7.0.0"
}
},
"node_modules/@atlaskit/css/node_modules/@atlaskit/tokens": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-11.0.0.tgz",
"integrity": "sha512-uAej+DW3Oujh2sdEK7NqzQtKof0XQzfRx5cX9wBvag/rYQwAclYWLQ17LqNzJhwaF7SQykFnWKucsL3Y4Cmo3Q==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/ds-lib": "^5.3.0",
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.20.0",
"bind-event-listener": "^3.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/datetime-picker": {
"version": "17.5.0",
"resolved": "https://registry.npmjs.org/@atlaskit/datetime-picker/-/datetime-picker-17.5.0.tgz",
"integrity": "sha512-WxNuX5r9IkhuY1jQBuRli/yYJh8PAezTnKvsb4N26Ibjb4qWXTRU93rSNFKO2qawgOW1ri8ddL5ZwKM3kvO9dw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/analytics-next": "^11.1.0",
"@atlaskit/button": "^23.9.0",
"@atlaskit/calendar": "^17.2.0",
"@atlaskit/css": "^0.19.0",
"@atlaskit/ds-lib": "^5.3.0",
"@atlaskit/icon": "^30.0.0",
"@atlaskit/layering": "^3.6.0",
"@atlaskit/locale": "^3.0.0",
"@atlaskit/platform-feature-flags": "^1.1.0",
"@atlaskit/popper": "^7.1.0",
"@atlaskit/primitives": "^18.0.0",
"@atlaskit/select": "^21.7.0",
"@atlaskit/tokens": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@compiled/react": "^0.18.6",
"date-fns": "^2.17.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/datetime-picker/node_modules/@atlaskit/atlassian-context": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/@atlaskit/atlassian-context/-/atlassian-context-0.6.0.tgz",
"integrity": "sha512-TjaV1OIjP8DaOyaqzPI5OkYvVckn3hYwE92v8RcdnpOiMKI0taedg1sLXD7x0nPx5MtXPmCJNNVJJprDN7pmxQ==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/datetime-picker/node_modules/@atlaskit/ds-lib": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/ds-lib/-/ds-lib-5.3.0.tgz",
"integrity": "sha512-j3DLHqBACSJsG3XqSgCIwZqvJhYkpSC8i+24n/JYCRjIxYEJMsuSXOtdeu0qBajREwgzmAFP6AVfVZh1zAWG/A==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"bind-event-listener": "^3.0.0",
"react-uid": "^2.2.0",
"tiny-invariant": "^1.2.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/datetime-picker/node_modules/@atlaskit/feature-gate-js-client": {
"version": "5.5.7",
"resolved": "https://registry.npmjs.org/@atlaskit/feature-gate-js-client/-/feature-gate-js-client-5.5.7.tgz",
"integrity": "sha512-m2ATuJChdHLJdFxpfm5HPnBzjtg8yJFLdZmZguP24oFJI1562y7JbOSEmrRtbzyOIuuqjSUrcNA/el3+srkjrw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/atlassian-context": "^0.6.0",
"@babel/runtime": "^7.0.0",
"@statsig/client-core": "^3.21.1",
"@statsig/js-client": "^3.21.1",
"eventemitter3": "^4.0.0"
}
},
"node_modules/@atlaskit/datetime-picker/node_modules/@atlaskit/platform-feature-flags": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@atlaskit/platform-feature-flags/-/platform-feature-flags-1.1.3.tgz",
"integrity": "sha512-dRn6UvVmMF5+WXnv7ZlxKTV2rVQncI2TgM0KTGSqpHdD9LnogITWC/rFjzUuF/W8MBCEvpouGilukqhq6rASnw==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/feature-gate-js-client": "^5.5.0",
"@babel/runtime": "^7.0.0"
}
},
"node_modules/@atlaskit/datetime-picker/node_modules/@atlaskit/tokens": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-11.0.0.tgz",
"integrity": "sha512-uAej+DW3Oujh2sdEK7NqzQtKof0XQzfRx5cX9wBvag/rYQwAclYWLQ17LqNzJhwaF7SQykFnWKucsL3Y4Cmo3Q==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/ds-lib": "^5.3.0",
"@atlaskit/platform-feature-flags": "^1.1.0",
"@babel/runtime": "^7.0.0",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.20.0",
"bind-event-listener": "^3.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/ds-lib": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@atlaskit/ds-lib/-/ds-lib-2.7.0.tgz",
"integrity": "sha512-+U4aPE2dBRFUBYWCM9vkrwJGrLAYVcK30ZpEiQDNpM2D7K41223TfEijC8azaN4VM3tsCgwSKBWwniloNxqYbA==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/platform-feature-flags": "^0.3.0",
"@babel/runtime": "^7.0.0",
"bind-event-listener": "^3.0.0",
"react-uid": "^2.2.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/@atlaskit/dynamic-table": {
"version": "18.3.16",
"resolved": "https://registry.npmjs.org/@atlaskit/dynamic-table/-/dynamic-table-18.3.16.tgz",
"integrity": "sha512-6xLHmzMTaNUAg29X7XSh13D1iTuWhiDKA8PzbSgOOjIVx1EFQXrBXXtBnBAf17M1MYPsRNHsJ+D97QCc84pdSQ==",
"license": "Apache-2.0",
"dependencies": {
"@atlaskit/analytics-next": "^11.1.0",
"@atlaskit/css": "^0.19.0",
"@atlaskit/ds-lib": "^5.3.0",
"@atlaskit/icon": "^30.0.0",
"@atlaskit/pagination": "^16.2.0",
"@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-migration": "^2.0.0",
"@atlaskit/primitives": "^18.0.0",
"@atlaskit/spinner": "^19.0.0",
"@atlaskit/tokens": "^11.0.0",
"@atlaskit/tooltip": "^20.14.0",
"@babel/runtime": "^7.0.0",
"@compiled/react": "^0.18.6"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
},
"node_modules/@atlaskit/dynamic-table/node_modules/@atlaskit/atlassian-context": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/@atlaskit/atlassian-context/-/atlassian-context-0.6.0.tgz",
"integrity": "sha512-TjaV1OIjP8DaOyaqzPI5OkYvVckn3hYwE92v8RcdnpOiMKI0taedg1sLXD7x0nPx5MtXPmCJNNVJJprDN7pmxQ==",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/@atlaskit/dynamic-table/node_modules/@atlaskit/ds-lib": {
"version": "5.3.0",