forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
2295 lines (2295 loc) · 99.3 KB
/
Copy pathpackage.json
File metadata and controls
2295 lines (2295 loc) · 99.3 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": "kibana",
"description": "Kibana is a browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elasticsearch.",
"keywords": [
"kibana",
"elasticsearch",
"logstash",
"analytics",
"visualizations",
"dashboards",
"dashboarding"
],
"private": true,
"version": "9.6.0",
"branch": "main",
"types": "./kibana.d.ts",
"tsdocMetadata": "./build/tsdoc-metadata.json",
"build": {
"date": "2023-05-15T23:12:09+0000",
"number": 8467,
"sha": "6cb7fec4e154faa0a4a3fee4b33dfef91b9870d9"
},
"homepage": "https://www.elastic.co/products/kibana",
"bugs": {
"url": "https://github.com/elastic/kibana/issues"
},
"kibana": {
"clean": {
"extraPatterns": [
"build",
"data/optimize",
"built_assets",
".eslintcache",
".node_binaries",
"src/plugins/*/target"
]
}
},
"author": "Rashid Khan <rashid.khan@elastic.co>",
"scripts": {
"backport-skip-ci": "backport --prDescription \"[skip-ci]\"",
"build": "node scripts/build --all-platforms",
"build:apidocs": "node scripts/build_api_docs",
"checkLicenses": "node scripts/check_licenses --dev",
"debug": "node --nolazy --inspect scripts/kibana --dev",
"debug-break": "node --nolazy --inspect-brk scripts/kibana --dev",
"dev-docs": "scripts/dev_docs.sh",
"es": "node scripts/es",
"preinstall": "node ./preinstall_check",
"kbn": "node scripts/kbn",
"lint": "yarn run lint:es && yarn run lint:style",
"lint:es": "node scripts/eslint_all_files",
"lint:oxc": "node scripts/lint",
"lint:style": "node scripts/stylelint",
"makelogs": "node scripts/makelogs",
"quick-checks": "node scripts/quick_checks",
"serverless": "node scripts/kibana --dev --serverless",
"serverless-es": "node scripts/kibana --dev --serverless=es",
"serverless-oblt": "node scripts/kibana --dev --serverless=oblt",
"serverless-security": "node scripts/kibana --dev --serverless=security",
"serverless-workplace-ai": "node scripts/kibana --dev --serverless=workplaceai",
"spec_to_console": "node scripts/spec_to_console",
"start": "node scripts/kibana --dev",
"storybook": "node scripts/storybook",
"storybook_docs": "node scripts/storybook_docs",
"test:ftr": "node scripts/functional_tests",
"test:ftr:runner": "node scripts/functional_test_runner",
"test:ftr:server": "node scripts/functional_tests_server",
"test:jest": "node scripts/jest",
"test:jest_integration": "node scripts/jest_integration",
"test:type_check": "node scripts/type_check"
},
"repository": {
"type": "git",
"url": "https://github.com/elastic/kibana.git"
},
"engines": {
"node": "24.21.0",
"pnpm": "~11.21.0",
"yarn": "1.22.22"
},
"resolutions": {
"**/@babel/core": "7.29.7",
"**/@babel/generator": "7.29.8",
"**/@babel/helper-annotate-as-pure": "7.29.7",
"**/@babel/helper-module-imports": "7.29.7",
"**/@babel/helper-plugin-utils": "7.29.7",
"**/@babel/parser": "7.29.8",
"**/@babel/plugin-syntax-jsx": "7.29.7",
"**/@babel/plugin-transform-react-jsx": "7.29.7",
"**/@babel/runtime": "7.29.7",
"**/@babel/traverse": "7.29.8",
"**/@babel/types": "7.29.8",
"**/@emotion/sheet": "npm:@elastic/emotion-sheet@1.4.1",
"**/@hapi/mimos/mime-db": "1.53.0",
"**/@hello-pangea/dnd": "18.0.1",
"**/@langchain/core": "1.2.3",
"**/@langchain/google-common": "2.2.0",
"**/@mswjs/interceptors": "0.41.6",
"**/@types/node": "24.10.13",
"**/@types/prop-types": "15.7.5",
"**/@typescript-eslint/utils": "8.60.0",
"**/adm-zip": "0.6.0",
"**/baseline-browser-mapping": "2.9.14",
"**/cheerio": "1.0.0-rc.12",
"**/chokidar": "3.5.3",
"**/d3-scale/**/d3-color": "npm:@elastic/kibana-d3-color@2.0.1",
"**/esbuild": "0.27.2",
"**/fast-xml-parser": "5.5.7",
"**/flatted": "3.4.2",
"**/hoist-non-react-statics": "3.3.2",
"**/isomorphic-fetch/node-fetch": "2.7.0",
"**/lodash": "4.18.1",
"**/pixelmatch": "5.3.0",
"**/qs": "6.16.0",
"**/remark-parse/trim": "1.0.1",
"**/serialize-javascript": "7.0.5",
"**/sharp": "0.35.2",
"**/socket.io-parser": "4.2.7",
"**/typescript": "6.0.3",
"**/util": "0.12.5",
"**/yauzl": "3.4.0",
"**/zod": "4.4.3",
"@aws-sdk/client-bedrock-agent-runtime": "3.1089.0",
"@aws-sdk/client-bedrock-runtime": "3.1089.0",
"@aws-sdk/client-kendra": "3.1089.0",
"@aws-sdk/credential-provider-node": "3.972.70",
"@elastic/elasticsearch/@elastic/transport": "9.4.0",
"@storybook/react-docgen-typescript-plugin": "1.0.6--canary.9.cd77847.0",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"apache-arrow": "20.x - 21.x",
"globby/fast-glob": "3.3.3",
"redux-thunk-v2/redux": "npm:redux@4.2.1"
},
"dependencies": {
"@a2a-js/sdk": "0.3.4",
"@ai-sdk/langchain": "1.0.190",
"@apidevtools/json-schema-ref-parser": "15.3.6",
"@appland/sql-parser": "1.5.1",
"@arizeai/openinference-semantic-conventions": "1.1.0",
"@atlaskit/pragmatic-drag-and-drop": "1.7.7",
"@atlaskit/pragmatic-drag-and-drop-hitbox": "1.1.0",
"@aws-sdk/client-bedrock-runtime": "3.1089.0",
"@babel/runtime": "7.29.7",
"@cfworker/json-schema": "4.1.1",
"@dagrejs/dagre": "3.0.0",
"@dnd-kit/core": "6.3.1",
"@dnd-kit/sortable": "10.0.0",
"@dnd-kit/utilities": "3.2.2",
"@elastic/apm-rum": "5.17.5",
"@elastic/apm-rum-core": "5.25.3",
"@elastic/apm-rum-react": "2.0.11",
"@elastic/charts": "73.0.1",
"@elastic/datemath": "5.0.3",
"@elastic/ebt": "1.4.1",
"@elastic/ecs": "9.3.0",
"@elastic/elasticsearch": "9.5.0",
"@elastic/ems-client": "8.7.0",
"@elastic/esql": "4.24.0",
"@elastic/eui": "121.0.0",
"@elastic/eui-illustrations": "1.0.2",
"@elastic/eui-theme-borealis": "8.0.0",
"@elastic/filesaver": "1.1.2",
"@elastic/kibana-d3-color": "2.0.1",
"@elastic/micro-jq": "2.0.2",
"@elastic/monaco-esql": "4.23.0",
"@elastic/node-crypto": "1.2.3",
"@elastic/numeral": "2.5.1",
"@elastic/opentelemetry-node": "1.17.0",
"@elastic/react-search-ui": "1.24.2",
"@elastic/react-search-ui-views": "1.24.2",
"@elastic/request-converter": "9.5.1",
"@elastic/request-crypto": "2.0.4",
"@elastic/schemas": "0.7.2",
"@elastic/search-ui": "1.24.2",
"@elastic/search-ui-app-search-connector": "1.24.1",
"@elastic/search-ui-engines-connector": "1.24.2",
"@emotion/cache": "11.14.0",
"@emotion/css": "11.13.5",
"@emotion/react": "11.14.0",
"@emotion/serialize": "1.3.3",
"@emotion/styled": "11.14.1",
"@faker-js/faker": "10.5.0",
"@formatjs/icu-messageformat-parser": "2.11.1",
"@formatjs/intl": "2.10.2",
"@formatjs/intl-utils": "3.8.4",
"@formatjs/ts-transformer": "3.13.14",
"@google/generative-ai": "0.24.1",
"@grpc/grpc-js": "1.14.4",
"@hapi/accept": "6.0.3",
"@hapi/boom": "10.0.1",
"@hapi/cookie": "12.0.1",
"@hapi/h2o2": "10.0.4",
"@hapi/hapi": "21.4.9",
"@hapi/hoek": "11.0.7",
"@hapi/inert": "7.1.2",
"@hapi/wreck": "18.1.2",
"@hello-pangea/dnd": "18.0.1",
"@kbn/aad-fixtures-plugin": "workspace:*",
"@kbn/access-control-test-plugin": "workspace:*",
"@kbn/actions-plugin": "workspace:*",
"@kbn/actions-simulators-plugin": "workspace:*",
"@kbn/actions-types": "workspace:*",
"@kbn/actions-utils": "workspace:*",
"@kbn/advanced-settings-plugin": "workspace:*",
"@kbn/agent-builder-browser": "workspace:*",
"@kbn/agent-builder-common": "workspace:*",
"@kbn/agent-builder-dashboards-common": "workspace:*",
"@kbn/agent-builder-dashboards-plugin": "workspace:*",
"@kbn/agent-builder-elastic-ai-index-ki-types": "workspace:*",
"@kbn/agent-builder-genai-utils": "workspace:*",
"@kbn/agent-builder-platform-plugin": "workspace:*",
"@kbn/agent-builder-plugin": "workspace:*",
"@kbn/agent-builder-server": "workspace:*",
"@kbn/agent-builder-skill-loader": "workspace:*",
"@kbn/agent-builder-sml-plugin": "workspace:*",
"@kbn/agent-builder-sml-test-types-plugin": "workspace:*",
"@kbn/agent-builder-tools-base": "workspace:*",
"@kbn/agent-builder-visualizations": "workspace:*",
"@kbn/agent-builder-visualizations-common": "workspace:*",
"@kbn/agent-builder-visualizations-plugin": "workspace:*",
"@kbn/agent-builder-visualizations-server": "workspace:*",
"@kbn/agent-builder-workflow-gen": "workspace:*",
"@kbn/agent-builder-workflows-plugin": "workspace:*",
"@kbn/agentic-investigations-common": "workspace:*",
"@kbn/agentic-investigations-plugin": "workspace:*",
"@kbn/ai-assistant": "workspace:*",
"@kbn/ai-assistant-common": "workspace:*",
"@kbn/ai-assistant-connector-selector-action": "workspace:*",
"@kbn/ai-assistant-cta": "workspace:*",
"@kbn/ai-assistant-icon": "workspace:*",
"@kbn/ai-assistant-management-plugin": "workspace:*",
"@kbn/ai-security-labs-content": "workspace:*",
"@kbn/ai-tools": "workspace:*",
"@kbn/aiops-change-point-detection": "workspace:*",
"@kbn/aiops-common": "workspace:*",
"@kbn/aiops-components": "workspace:*",
"@kbn/aiops-log-pattern-analysis": "workspace:*",
"@kbn/aiops-log-rate-analysis": "workspace:*",
"@kbn/aiops-plugin": "workspace:*",
"@kbn/aiops-server-schemas": "workspace:*",
"@kbn/aiops-test-utils": "workspace:*",
"@kbn/aiops-utils": "workspace:*",
"@kbn/alerting-api-integration-test-plugin": "workspace:*",
"@kbn/alerting-comparators": "workspace:*",
"@kbn/alerting-example-plugin": "workspace:*",
"@kbn/alerting-fixture-plugin": "workspace:*",
"@kbn/alerting-plugin": "workspace:*",
"@kbn/alerting-rule-utils": "workspace:*",
"@kbn/alerting-state-types": "workspace:*",
"@kbn/alerting-types": "workspace:*",
"@kbn/alerting-v2-browser-shared": "workspace:*",
"@kbn/alerting-v2-common-queries": "workspace:*",
"@kbn/alerting-v2-constants": "workspace:*",
"@kbn/alerting-v2-episodes-ui": "workspace:*",
"@kbn/alerting-v2-plugin": "workspace:*",
"@kbn/alerting-v2-rule-form": "workspace:*",
"@kbn/alerting-v2-schemas": "workspace:*",
"@kbn/alerting-v2-utils": "workspace:*",
"@kbn/alerts-as-data-utils": "workspace:*",
"@kbn/alerts-grouping": "workspace:*",
"@kbn/alerts-restricted-fixtures-plugin": "workspace:*",
"@kbn/alerts-ui-shared": "workspace:*",
"@kbn/alertzero-common": "workspace:*",
"@kbn/alertzero-plugin": "workspace:*",
"@kbn/analytics": "workspace:*",
"@kbn/analytics-collection-utils": "workspace:*",
"@kbn/analytics-ftr-helpers-plugin": "workspace:*",
"@kbn/analytics-plugin-a-plugin": "workspace:*",
"@kbn/announcement-banner": "workspace:*",
"@kbn/anonymization-common": "workspace:*",
"@kbn/anonymization-plugin": "workspace:*",
"@kbn/anonymization-ui": "workspace:*",
"@kbn/apm-api-shared": "workspace:*",
"@kbn/apm-common": "workspace:*",
"@kbn/apm-config-loader": "workspace:*",
"@kbn/apm-data-access-plugin": "workspace:*",
"@kbn/apm-data-view": "workspace:*",
"@kbn/apm-embeddable-common": "workspace:*",
"@kbn/apm-plugin": "workspace:*",
"@kbn/apm-shared": "workspace:*",
"@kbn/apm-sources-access-plugin": "workspace:*",
"@kbn/apm-types": "workspace:*",
"@kbn/apm-types-shared": "workspace:*",
"@kbn/apm-ui-shared": "workspace:*",
"@kbn/apm-utils": "workspace:*",
"@kbn/app-header": "workspace:*",
"@kbn/app-link-test-plugin": "workspace:*",
"@kbn/app-menu": "workspace:*",
"@kbn/application-usage-test-plugin": "workspace:*",
"@kbn/as-code-data-views-schema": "workspace:*",
"@kbn/as-code-data-views-transforms": "workspace:*",
"@kbn/as-code-export-flyout-component": "workspace:*",
"@kbn/as-code-filters-constants": "workspace:*",
"@kbn/as-code-filters-schema": "workspace:*",
"@kbn/as-code-filters-transforms": "workspace:*",
"@kbn/as-code-shared-schemas": "workspace:*",
"@kbn/as-code-shared-telemetry": "workspace:*",
"@kbn/as-code-shared-transforms": "workspace:*",
"@kbn/as-code-utils": "workspace:*",
"@kbn/attack-discovery-schedules-common": "workspace:*",
"@kbn/audit-log-plugin": "workspace:*",
"@kbn/automatic-import-plugin": "workspace:*",
"@kbn/autoops-promotion-callout": "workspace:*",
"@kbn/avc-banner": "workspace:*",
"@kbn/background-search": "workspace:*",
"@kbn/banners-plugin": "workspace:*",
"@kbn/calculate-auto": "workspace:*",
"@kbn/calculate-width-from-char-count": "workspace:*",
"@kbn/canvas-plugin": "workspace:*",
"@kbn/cases-api-integration-test-plugin": "workspace:*",
"@kbn/cases-components": "workspace:*",
"@kbn/cases-plugin": "workspace:*",
"@kbn/cbor": "workspace:*",
"@kbn/cell-actions": "workspace:*",
"@kbn/change-history": "workspace:*",
"@kbn/change-history-ui": "workspace:*",
"@kbn/change-point-chart-viewer": "workspace:*",
"@kbn/chart-expressions-common": "workspace:*",
"@kbn/chart-icons": "workspace:*",
"@kbn/charts-plugin": "workspace:*",
"@kbn/charts-theme": "workspace:*",
"@kbn/classic-stream-flyout": "workspace:*",
"@kbn/cleanup-before-exit": "workspace:*",
"@kbn/cli": "workspace:*",
"@kbn/client-apps-plugin": "workspace:*",
"@kbn/cloud": "workspace:*",
"@kbn/cloud-chat-plugin": "workspace:*",
"@kbn/cloud-connect-plugin": "workspace:*",
"@kbn/cloud-data-migration-plugin": "workspace:*",
"@kbn/cloud-defend-plugin": "workspace:*",
"@kbn/cloud-experiments-plugin": "workspace:*",
"@kbn/cloud-full-story-plugin": "workspace:*",
"@kbn/cloud-integration-saml-provider-plugin": "workspace:*",
"@kbn/cloud-links-plugin": "workspace:*",
"@kbn/cloud-plugin": "workspace:*",
"@kbn/cloud-security-posture": "workspace:*",
"@kbn/cloud-security-posture-common": "workspace:*",
"@kbn/cloud-security-posture-graph": "workspace:*",
"@kbn/cloud-security-posture-plugin": "workspace:*",
"@kbn/code-editor": "workspace:*",
"@kbn/coloring": "workspace:*",
"@kbn/config": "workspace:*",
"@kbn/config-mocks": "workspace:*",
"@kbn/config-schema": "workspace:*",
"@kbn/connector-events-bridge-plugin": "workspace:*",
"@kbn/connector-schemas": "workspace:*",
"@kbn/connector-specs": "workspace:*",
"@kbn/console-plugin": "workspace:*",
"@kbn/content-connectors-plugin": "workspace:*",
"@kbn/content-list": "workspace:*",
"@kbn/content-list-common": "workspace:*",
"@kbn/content-list-footer": "workspace:*",
"@kbn/content-list-page": "workspace:*",
"@kbn/content-list-provider": "workspace:*",
"@kbn/content-list-provider-client": "workspace:*",
"@kbn/content-list-table": "workspace:*",
"@kbn/content-list-toolbar": "workspace:*",
"@kbn/content-management-access-control-public": "workspace:*",
"@kbn/content-management-access-control-server": "workspace:*",
"@kbn/content-management-content-editor": "workspace:*",
"@kbn/content-management-content-insights-public": "workspace:*",
"@kbn/content-management-content-insights-server": "workspace:*",
"@kbn/content-management-examples-plugin": "workspace:*",
"@kbn/content-management-favorites-common": "workspace:*",
"@kbn/content-management-favorites-public": "workspace:*",
"@kbn/content-management-favorites-server": "workspace:*",
"@kbn/content-management-plugin": "workspace:*",
"@kbn/content-management-tabbed-table-list-view": "workspace:*",
"@kbn/content-management-table-list-view": "workspace:*",
"@kbn/content-management-table-list-view-common": "workspace:*",
"@kbn/content-management-table-list-view-table": "workspace:*",
"@kbn/content-management-tags": "workspace:*",
"@kbn/content-management-user-profiles": "workspace:*",
"@kbn/content-management-utils": "workspace:*",
"@kbn/content-packs-schema": "workspace:*",
"@kbn/context-engine-agent-builder-plugin": "workspace:*",
"@kbn/context-engine-plugin": "workspace:*",
"@kbn/context-switcher-components": "workspace:*",
"@kbn/control-group-renderer": "workspace:*",
"@kbn/controls-constants": "workspace:*",
"@kbn/controls-example-plugin": "workspace:*",
"@kbn/controls-plugin": "workspace:*",
"@kbn/controls-renderer": "workspace:*",
"@kbn/controls-schemas": "workspace:*",
"@kbn/core": "workspace:*",
"@kbn/core-analytics-browser": "workspace:*",
"@kbn/core-analytics-browser-internal": "workspace:*",
"@kbn/core-analytics-server": "workspace:*",
"@kbn/core-analytics-server-internal": "workspace:*",
"@kbn/core-app-status-plugin": "workspace:*",
"@kbn/core-application-browser": "workspace:*",
"@kbn/core-application-browser-internal": "workspace:*",
"@kbn/core-application-common": "workspace:*",
"@kbn/core-apps-browser-internal": "workspace:*",
"@kbn/core-apps-server-internal": "workspace:*",
"@kbn/core-base-browser-internal": "workspace:*",
"@kbn/core-base-common": "workspace:*",
"@kbn/core-base-common-internal": "workspace:*",
"@kbn/core-base-server-internal": "workspace:*",
"@kbn/core-capabilities-browser-internal": "workspace:*",
"@kbn/core-capabilities-common": "workspace:*",
"@kbn/core-capabilities-server": "workspace:*",
"@kbn/core-capabilities-server-internal": "workspace:*",
"@kbn/core-chrome-app-menu": "workspace:*",
"@kbn/core-chrome-app-menu-components": "workspace:*",
"@kbn/core-chrome-browser": "workspace:*",
"@kbn/core-chrome-browser-components": "workspace:*",
"@kbn/core-chrome-browser-context": "workspace:*",
"@kbn/core-chrome-browser-hooks": "workspace:*",
"@kbn/core-chrome-browser-internal": "workspace:*",
"@kbn/core-chrome-browser-internal-types": "workspace:*",
"@kbn/core-chrome-browser-navigation-utils": "workspace:*",
"@kbn/core-chrome-layout": "workspace:*",
"@kbn/core-chrome-layout-constants": "workspace:*",
"@kbn/core-chrome-layout-utils": "workspace:*",
"@kbn/core-chrome-navigation-customization": "workspace:*",
"@kbn/core-chrome-sidebar": "workspace:*",
"@kbn/core-chrome-sidebar-components": "workspace:*",
"@kbn/core-chrome-sidebar-context": "workspace:*",
"@kbn/core-chrome-sidebar-internal": "workspace:*",
"@kbn/core-chrome-sidebar-mocks": "workspace:*",
"@kbn/core-config-server-internal": "workspace:*",
"@kbn/core-custom-branding-browser": "workspace:*",
"@kbn/core-custom-branding-browser-internal": "workspace:*",
"@kbn/core-custom-branding-common": "workspace:*",
"@kbn/core-custom-branding-server": "workspace:*",
"@kbn/core-custom-branding-server-internal": "workspace:*",
"@kbn/core-data-streams-server": "workspace:*",
"@kbn/core-data-streams-server-internal": "workspace:*",
"@kbn/core-data-streams-server-mocks": "workspace:*",
"@kbn/core-deprecations-browser": "workspace:*",
"@kbn/core-deprecations-browser-internal": "workspace:*",
"@kbn/core-deprecations-common": "workspace:*",
"@kbn/core-deprecations-server": "workspace:*",
"@kbn/core-deprecations-server-internal": "workspace:*",
"@kbn/core-di": "workspace:*",
"@kbn/core-di-browser": "workspace:*",
"@kbn/core-di-browser-internal": "workspace:*",
"@kbn/core-di-internal": "workspace:*",
"@kbn/core-di-server": "workspace:*",
"@kbn/core-di-server-internal": "workspace:*",
"@kbn/core-doc-links-browser": "workspace:*",
"@kbn/core-doc-links-browser-internal": "workspace:*",
"@kbn/core-doc-links-server": "workspace:*",
"@kbn/core-doc-links-server-internal": "workspace:*",
"@kbn/core-elasticsearch-client-server-internal": "workspace:*",
"@kbn/core-elasticsearch-server": "workspace:*",
"@kbn/core-elasticsearch-server-internal": "workspace:*",
"@kbn/core-elasticsearch-server-utils": "workspace:*",
"@kbn/core-environment-server-internal": "workspace:*",
"@kbn/core-execution-context-browser": "workspace:*",
"@kbn/core-execution-context-browser-internal": "workspace:*",
"@kbn/core-execution-context-common": "workspace:*",
"@kbn/core-execution-context-server": "workspace:*",
"@kbn/core-execution-context-server-internal": "workspace:*",
"@kbn/core-fatal-errors-browser": "workspace:*",
"@kbn/core-fatal-errors-browser-internal": "workspace:*",
"@kbn/core-feature-flags-browser": "workspace:*",
"@kbn/core-feature-flags-browser-internal": "workspace:*",
"@kbn/core-feature-flags-browser-mocks": "workspace:*",
"@kbn/core-feature-flags-server": "workspace:*",
"@kbn/core-feature-flags-server-internal": "workspace:*",
"@kbn/core-feature-flags-server-mocks": "workspace:*",
"@kbn/core-history-block-plugin": "workspace:*",
"@kbn/core-http-browser": "workspace:*",
"@kbn/core-http-browser-internal": "workspace:*",
"@kbn/core-http-common": "workspace:*",
"@kbn/core-http-context-server-internal": "workspace:*",
"@kbn/core-http-plugin": "workspace:*",
"@kbn/core-http-rate-limiter-browser-internal": "workspace:*",
"@kbn/core-http-rate-limiter-server-internal": "workspace:*",
"@kbn/core-http-request-handler-context-server": "workspace:*",
"@kbn/core-http-request-handler-context-server-internal": "workspace:*",
"@kbn/core-http-resources-server": "workspace:*",
"@kbn/core-http-resources-server-internal": "workspace:*",
"@kbn/core-http-router-server-internal": "workspace:*",
"@kbn/core-http-server": "workspace:*",
"@kbn/core-http-server-internal": "workspace:*",
"@kbn/core-http-server-utils": "workspace:*",
"@kbn/core-i18n-browser": "workspace:*",
"@kbn/core-i18n-browser-internal": "workspace:*",
"@kbn/core-i18n-server": "workspace:*",
"@kbn/core-i18n-server-internal": "workspace:*",
"@kbn/core-injected-metadata-browser-internal": "workspace:*",
"@kbn/core-injected-metadata-common-internal": "workspace:*",
"@kbn/core-integrations-browser-internal": "workspace:*",
"@kbn/core-lifecycle-browser": "workspace:*",
"@kbn/core-lifecycle-browser-internal": "workspace:*",
"@kbn/core-lifecycle-server": "workspace:*",
"@kbn/core-lifecycle-server-internal": "workspace:*",
"@kbn/core-logging-browser-internal": "workspace:*",
"@kbn/core-logging-common-internal": "workspace:*",
"@kbn/core-logging-server": "workspace:*",
"@kbn/core-logging-server-internal": "workspace:*",
"@kbn/core-metrics-collectors-server-internal": "workspace:*",
"@kbn/core-metrics-server": "workspace:*",
"@kbn/core-metrics-server-internal": "workspace:*",
"@kbn/core-mount-utils-browser": "workspace:*",
"@kbn/core-mount-utils-browser-internal": "workspace:*",
"@kbn/core-node-server": "workspace:*",
"@kbn/core-node-server-internal": "workspace:*",
"@kbn/core-notifications-browser": "workspace:*",
"@kbn/core-notifications-browser-internal": "workspace:*",
"@kbn/core-overlays-browser": "workspace:*",
"@kbn/core-overlays-browser-internal": "workspace:*",
"@kbn/core-plugin-a-plugin": "workspace:*",
"@kbn/core-plugin-appleave-plugin": "workspace:*",
"@kbn/core-plugin-b-plugin": "workspace:*",
"@kbn/core-plugin-chromeless-plugin": "workspace:*",
"@kbn/core-plugin-deep-links-plugin": "workspace:*",
"@kbn/core-plugin-deprecations-plugin": "workspace:*",
"@kbn/core-plugin-dynamic-resolving-a": "workspace:*",
"@kbn/core-plugin-dynamic-resolving-b": "workspace:*",
"@kbn/core-plugin-execution-context-plugin": "workspace:*",
"@kbn/core-plugin-helpmenu-plugin": "workspace:*",
"@kbn/core-plugin-initializer-context-plugin": "workspace:*",
"@kbn/core-plugin-route-timeouts-plugin": "workspace:*",
"@kbn/core-plugins-base-server-internal": "workspace:*",
"@kbn/core-plugins-browser": "workspace:*",
"@kbn/core-plugins-browser-internal": "workspace:*",
"@kbn/core-plugins-contracts-browser": "workspace:*",
"@kbn/core-plugins-contracts-server": "workspace:*",
"@kbn/core-plugins-server": "workspace:*",
"@kbn/core-plugins-server-internal": "workspace:*",
"@kbn/core-preboot-server": "workspace:*",
"@kbn/core-preboot-server-internal": "workspace:*",
"@kbn/core-pricing-browser": "workspace:*",
"@kbn/core-pricing-browser-internal": "workspace:*",
"@kbn/core-pricing-common": "workspace:*",
"@kbn/core-pricing-server": "workspace:*",
"@kbn/core-pricing-server-internal": "workspace:*",
"@kbn/core-provider-plugin": "workspace:*",
"@kbn/core-rendering-browser": "workspace:*",
"@kbn/core-rendering-browser-internal": "workspace:*",
"@kbn/core-rendering-server-internal": "workspace:*",
"@kbn/core-root-browser-internal": "workspace:*",
"@kbn/core-root-server-internal": "workspace:*",
"@kbn/core-saved-objects-api-server": "workspace:*",
"@kbn/core-saved-objects-api-server-internal": "workspace:*",
"@kbn/core-saved-objects-base-server-internal": "workspace:*",
"@kbn/core-saved-objects-common": "workspace:*",
"@kbn/core-saved-objects-import-export-server-internal": "workspace:*",
"@kbn/core-saved-objects-migration-server-internal": "workspace:*",
"@kbn/core-saved-objects-server": "workspace:*",
"@kbn/core-saved-objects-server-internal": "workspace:*",
"@kbn/core-saved-objects-utils-server": "workspace:*",
"@kbn/core-security-browser": "workspace:*",
"@kbn/core-security-browser-internal": "workspace:*",
"@kbn/core-security-browser-mocks": "workspace:*",
"@kbn/core-security-common": "workspace:*",
"@kbn/core-security-server": "workspace:*",
"@kbn/core-security-server-internal": "workspace:*",
"@kbn/core-security-server-mocks": "workspace:*",
"@kbn/core-spaces-common": "workspace:*",
"@kbn/core-status-common": "workspace:*",
"@kbn/core-status-server": "workspace:*",
"@kbn/core-status-server-internal": "workspace:*",
"@kbn/core-test-helpers-deprecations-getters": "workspace:*",
"@kbn/core-test-helpers-http-setup-browser": "workspace:*",
"@kbn/core-test-helpers-so-type-serializer": "workspace:*",
"@kbn/core-test-helpers-test-utils": "workspace:*",
"@kbn/core-theme-browser": "workspace:*",
"@kbn/core-theme-browser-internal": "workspace:*",
"@kbn/core-theme-browser-internal-types": "workspace:*",
"@kbn/core-ui-settings-browser": "workspace:*",
"@kbn/core-ui-settings-browser-internal": "workspace:*",
"@kbn/core-ui-settings-common": "workspace:*",
"@kbn/core-ui-settings-server": "workspace:*",
"@kbn/core-ui-settings-server-internal": "workspace:*",
"@kbn/core-usage-data-base-server-internal": "workspace:*",
"@kbn/core-usage-data-server": "workspace:*",
"@kbn/core-usage-data-server-internal": "workspace:*",
"@kbn/core-user-activity-server": "workspace:*",
"@kbn/core-user-activity-server-internal": "workspace:*",
"@kbn/core-user-profile-browser": "workspace:*",
"@kbn/core-user-profile-browser-context": "workspace:*",
"@kbn/core-user-profile-browser-hooks": "workspace:*",
"@kbn/core-user-profile-browser-internal": "workspace:*",
"@kbn/core-user-profile-browser-mocks": "workspace:*",
"@kbn/core-user-profile-common": "workspace:*",
"@kbn/core-user-profile-server": "workspace:*",
"@kbn/core-user-profile-server-internal": "workspace:*",
"@kbn/core-user-profile-server-mocks": "workspace:*",
"@kbn/core-user-settings-server": "workspace:*",
"@kbn/core-user-settings-server-internal": "workspace:*",
"@kbn/core-user-settings-server-mocks": "workspace:*",
"@kbn/core-user-settings-types": "workspace:*",
"@kbn/core-user-storage-browser": "workspace:*",
"@kbn/core-user-storage-browser-internal": "workspace:*",
"@kbn/core-user-storage-common": "workspace:*",
"@kbn/core-user-storage-server": "workspace:*",
"@kbn/core-user-storage-server-internal": "workspace:*",
"@kbn/core-user-storage-server-mocks": "workspace:*",
"@kbn/cps": "workspace:*",
"@kbn/cps-common": "workspace:*",
"@kbn/cps-server-utils": "workspace:*",
"@kbn/cps-utils": "workspace:*",
"@kbn/cross-cluster-replication-plugin": "workspace:*",
"@kbn/crypto": "workspace:*",
"@kbn/crypto-browser": "workspace:*",
"@kbn/css-utils": "workspace:*",
"@kbn/custom-branding-plugin": "workspace:*",
"@kbn/custom-content-common": "workspace:*",
"@kbn/custom-content-plugin": "workspace:*",
"@kbn/custom-content-renderer": "workspace:*",
"@kbn/custom-content-server": "workspace:*",
"@kbn/custom-icons": "workspace:*",
"@kbn/custom-integrations-plugin": "workspace:*",
"@kbn/dag-layout": "workspace:*",
"@kbn/dashboard-markdown": "workspace:*",
"@kbn/dashboard-navigation-options-common": "workspace:*",
"@kbn/dashboard-navigation-options-components": "workspace:*",
"@kbn/dashboard-navigation-options-schema": "workspace:*",
"@kbn/dashboard-plugin": "workspace:*",
"@kbn/dashboards-selector": "workspace:*",
"@kbn/data-federation-plugin": "workspace:*",
"@kbn/data-forge": "workspace:*",
"@kbn/data-grid-in-table-search": "workspace:*",
"@kbn/data-lifecycle-phases": "workspace:*",
"@kbn/data-plugin": "workspace:*",
"@kbn/data-quality": "workspace:*",
"@kbn/data-quality-plugin": "workspace:*",
"@kbn/data-search-plugin": "workspace:*",
"@kbn/data-service": "workspace:*",
"@kbn/data-service-server": "workspace:*",
"@kbn/data-source": "workspace:*",
"@kbn/data-stream-adapter": "workspace:*",
"@kbn/data-streams": "workspace:*",
"@kbn/data-streams-example-plugin": "workspace:*",
"@kbn/data-usage-plugin": "workspace:*",
"@kbn/data-view-editor-plugin": "workspace:*",
"@kbn/data-view-field-editor-example-plugin": "workspace:*",
"@kbn/data-view-field-editor-plugin": "workspace:*",
"@kbn/data-view-management-plugin": "workspace:*",
"@kbn/data-view-utils": "workspace:*",
"@kbn/data-view-validation": "workspace:*",
"@kbn/data-views-as-code-plugin": "workspace:*",
"@kbn/data-views-plugin": "workspace:*",
"@kbn/data-visualizer-plugin": "workspace:*",
"@kbn/data-visualizer-server-schemas": "workspace:*",
"@kbn/dataset-quality-plugin": "workspace:*",
"@kbn/date-range-picker": "workspace:*",
"@kbn/date-range-picker-presets": "workspace:*",
"@kbn/date-range-picker-presets-common": "workspace:*",
"@kbn/datemath": "workspace:*",
"@kbn/deeplinks-agent-builder": "workspace:*",
"@kbn/deeplinks-analytics": "workspace:*",
"@kbn/deeplinks-context-engine": "workspace:*",
"@kbn/deeplinks-devtools": "workspace:*",
"@kbn/deeplinks-evals": "workspace:*",
"@kbn/deeplinks-fleet": "workspace:*",
"@kbn/deeplinks-management": "workspace:*",
"@kbn/deeplinks-ml": "workspace:*",
"@kbn/deeplinks-observability": "workspace:*",
"@kbn/deeplinks-search": "workspace:*",
"@kbn/deeplinks-security": "workspace:*",
"@kbn/deeplinks-shared": "workspace:*",
"@kbn/deeplinks-vectordb": "workspace:*",
"@kbn/deeplinks-workflows": "workspace:*",
"@kbn/deeplinks-workplace-ai": "workspace:*",
"@kbn/default-tracer": "workspace:*",
"@kbn/delete-managed-asset-callout": "workspace:*",
"@kbn/dependency-injection-example-plugin": "workspace:*",
"@kbn/design-tools": "workspace:*",
"@kbn/dev-tools-plugin": "workspace:*",
"@kbn/developer-examples-plugin": "workspace:*",
"@kbn/developer-toolbar": "workspace:*",
"@kbn/developer-toolbar-plugin": "workspace:*",
"@kbn/discover-contextual-components": "workspace:*",
"@kbn/discover-customization-examples-plugin": "workspace:*",
"@kbn/discover-enhanced-plugin": "workspace:*",
"@kbn/discover-plugin": "workspace:*",
"@kbn/discover-shared-plugin": "workspace:*",
"@kbn/discover-utils": "workspace:*",
"@kbn/discoveries": "workspace:*",
"@kbn/discoveries-plugin": "workspace:*",
"@kbn/discoveries-schemas": "workspace:*",
"@kbn/dissect-heuristics": "workspace:*",
"@kbn/doc-links": "workspace:*",
"@kbn/dom-drag-drop": "workspace:*",
"@kbn/ebt-click": "workspace:*",
"@kbn/ebt-tools": "workspace:*",
"@kbn/ecs-data-quality-dashboard": "workspace:*",
"@kbn/ecs-data-quality-dashboard-plugin": "workspace:*",
"@kbn/elastic-agent-condition-language": "workspace:*",
"@kbn/elastic-agent-utils": "workspace:*",
"@kbn/elastic-assistant": "workspace:*",
"@kbn/elastic-assistant-common": "workspace:*",
"@kbn/elastic-assistant-plugin": "workspace:*",
"@kbn/elastic-assistant-shared-state": "workspace:*",
"@kbn/elastic-assistant-shared-state-plugin": "workspace:*",
"@kbn/elastic-console-plugin": "workspace:*",
"@kbn/elasticsearch-client-plugin": "workspace:*",
"@kbn/elasticsearch-client-xpack-plugin": "workspace:*",
"@kbn/embeddable-alerts-table-plugin": "workspace:*",
"@kbn/embeddable-examples-plugin": "workspace:*",
"@kbn/embeddable-plugin": "workspace:*",
"@kbn/embedded-lens-example-plugin": "workspace:*",
"@kbn/encrypted-saved-objects-plugin": "workspace:*",
"@kbn/encrypted-saved-objects-shared": "workspace:*",
"@kbn/enterprise-search-plugin": "workspace:*",
"@kbn/entity-store": "workspace:*",
"@kbn/error-boundary-example-plugin": "workspace:*",
"@kbn/es-errors": "workspace:*",
"@kbn/es-mappings": "workspace:*",
"@kbn/es-query": "workspace:*",
"@kbn/es-query-constants": "workspace:*",
"@kbn/es-query-server": "workspace:*",
"@kbn/es-types": "workspace:*",
"@kbn/es-ui-shared-plugin": "workspace:*",
"@kbn/eso-model-version-example": "workspace:*",
"@kbn/eso-plugin": "workspace:*",
"@kbn/esql": "workspace:*",
"@kbn/esql-composer": "workspace:*",
"@kbn/esql-datagrid": "workspace:*",
"@kbn/esql-editor": "workspace:*",
"@kbn/esql-language": "workspace:*",
"@kbn/esql-language-inspector-plugin": "workspace:*",
"@kbn/esql-resource-browser": "workspace:*",
"@kbn/esql-server-utils": "workspace:*",
"@kbn/esql-types": "workspace:*",
"@kbn/esql-utils": "workspace:*",
"@kbn/esql-ux-example-plugin": "workspace:*",
"@kbn/esql-validation-example-plugin": "workspace:*",
"@kbn/eval-kql": "workspace:*",
"@kbn/evals-common": "workspace:*",
"@kbn/evals-plugin": "workspace:*",
"@kbn/evals-runner": "workspace:*",
"@kbn/evals-skills-plugin": "workspace:*",
"@kbn/event-annotation-common": "workspace:*",
"@kbn/event-annotation-components": "workspace:*",
"@kbn/event-annotation-listing-plugin": "workspace:*",
"@kbn/event-annotation-plugin": "workspace:*",
"@kbn/event-log-fixture-plugin": "workspace:*",
"@kbn/event-log-plugin": "workspace:*",
"@kbn/event-stacktrace": "workspace:*",
"@kbn/expandable-flyout": "workspace:*",
"@kbn/exploratory-view-example-plugin": "workspace:*",
"@kbn/exploratory-view-plugin": "workspace:*",
"@kbn/expression-gauge-plugin": "workspace:*",
"@kbn/expression-heatmap-plugin": "workspace:*",
"@kbn/expression-legacy-metric-vis-plugin": "workspace:*",
"@kbn/expression-metric-vis-plugin": "workspace:*",
"@kbn/expression-partition-vis-plugin": "workspace:*",
"@kbn/expression-tagcloud-plugin": "workspace:*",
"@kbn/expression-xy-plugin": "workspace:*",
"@kbn/expressions-explorer-plugin": "workspace:*",
"@kbn/expressions-plugin": "workspace:*",
"@kbn/failure-store-modal": "workspace:*",
"@kbn/favorite-button": "workspace:*",
"@kbn/feature-controls-examples-plugin": "workspace:*",
"@kbn/feature-flags-example-plugin": "workspace:*",
"@kbn/feature-usage-test-plugin": "workspace:*",
"@kbn/features-plugin": "workspace:*",
"@kbn/features-provider-plugin": "workspace:*",
"@kbn/fec-alerts-test-plugin": "workspace:*",
"@kbn/feedback-plugin": "workspace:*",
"@kbn/feedback-registry": "workspace:*",
"@kbn/field-formats-common": "workspace:*",
"@kbn/field-formats-example-plugin": "workspace:*",
"@kbn/field-formats-plugin": "workspace:*",
"@kbn/field-types": "workspace:*",
"@kbn/field-utils": "workspace:*",
"@kbn/fields-metadata-plugin": "workspace:*",
"@kbn/file-upload": "workspace:*",
"@kbn/file-upload-common": "workspace:*",
"@kbn/file-upload-plugin": "workspace:*",
"@kbn/files-example-plugin": "workspace:*",
"@kbn/files-management-plugin": "workspace:*",
"@kbn/files-plugin": "workspace:*",
"@kbn/fleet-plugin": "workspace:*",
"@kbn/flot-charts": "workspace:*",
"@kbn/flyout-info-blocks": "workspace:*",
"@kbn/flyout-meta-blocks": "workspace:*",
"@kbn/flyout-sections": "workspace:*",
"@kbn/flyout-system-example-plugin": "workspace:*",
"@kbn/flyout-template": "workspace:*",
"@kbn/foo-plugin": "workspace:*",
"@kbn/fs": "workspace:*",
"@kbn/ftr-apis-plugin": "workspace:*",
"@kbn/ftr-llm-proxy": "workspace:*",
"@kbn/functional-with-es-ssl-cases-test-plugin": "workspace:*",
"@kbn/gen-ai-settings-plugin": "workspace:*",
"@kbn/gen-ai-streaming-response-example-plugin": "workspace:*",
"@kbn/generate-csv": "workspace:*",
"@kbn/global-redirect-app-links": "workspace:*",
"@kbn/global-search-bar-plugin": "workspace:*",
"@kbn/global-search-plugin": "workspace:*",
"@kbn/global-search-providers-plugin": "workspace:*",
"@kbn/graph-plugin": "workspace:*",
"@kbn/grid-example-plugin": "workspace:*",
"@kbn/grid-layout": "workspace:*",
"@kbn/grok-heuristics": "workspace:*",
"@kbn/grok-ui": "workspace:*",
"@kbn/grokdebugger-plugin": "workspace:*",
"@kbn/grouping": "workspace:*",
"@kbn/handlebars": "workspace:*",
"@kbn/hapi-mocks": "workspace:*",
"@kbn/hardening-plugin": "workspace:*",
"@kbn/health-gateway-server": "workspace:*",
"@kbn/hello-world-plugin": "workspace:*",
"@kbn/home-plugin": "workspace:*",
"@kbn/home-sample-data-card": "workspace:*",
"@kbn/home-sample-data-tab": "workspace:*",
"@kbn/home-sample-data-types": "workspace:*",
"@kbn/human-readable-id": "workspace:*",
"@kbn/i18n": "workspace:*",
"@kbn/i18n-react": "workspace:*",
"@kbn/iframe-embedded-plugin": "workspace:*",
"@kbn/image-embeddable-plugin": "workspace:*",
"@kbn/inbox-common": "workspace:*",
"@kbn/inbox-plugin": "workspace:*",
"@kbn/index-adapter": "workspace:*",
"@kbn/index-editor": "workspace:*",
"@kbn/index-lifecycle-management-common-shared": "workspace:*",
"@kbn/index-lifecycle-management-plugin": "workspace:*",
"@kbn/index-management-plugin": "workspace:*",
"@kbn/index-management-shared-types": "workspace:*",
"@kbn/index-patterns-test-plugin": "workspace:*",
"@kbn/indices-metadata-plugin": "workspace:*",
"@kbn/inference-common": "workspace:*",
"@kbn/inference-connectors": "workspace:*",
"@kbn/inference-endpoint-plugin": "workspace:*",
"@kbn/inference-endpoint-ui-common": "workspace:*",
"@kbn/inference-langchain": "workspace:*",
"@kbn/inference-plugin": "workspace:*",
"@kbn/inference-prompt-utils": "workspace:*",
"@kbn/inference-tracing": "workspace:*",
"@kbn/inference-tracing-config": "workspace:*",
"@kbn/inference-workflows-plugin": "workspace:*",
"@kbn/infra-forge": "workspace:*",
"@kbn/infra-plugin": "workspace:*",
"@kbn/ingest-hub-plugin": "workspace:*",
"@kbn/ingest-pipeline-json-editor": "workspace:*",
"@kbn/ingest-pipelines-plugin": "workspace:*",
"@kbn/ingest-pipelines-shared": "workspace:*",
"@kbn/input-control-vis-plugin": "workspace:*",
"@kbn/inspect-component-plugin": "workspace:*",
"@kbn/inspector-plugin": "workspace:*",
"@kbn/interactive-setup-plugin": "workspace:*",
"@kbn/interactive-setup-test-endpoints-plugin": "workspace:*",
"@kbn/intercepts-plugin": "workspace:*",
"@kbn/interpreter": "workspace:*",
"@kbn/investigation-output": "workspace:*",
"@kbn/io-ts-utils": "workspace:*",
"@kbn/ipynb": "workspace:*",
"@kbn/item-buffer": "workspace:*",
"@kbn/json-schemas": "workspace:*",
"@kbn/kbn-health-gateway-status-plugin": "workspace:*",
"@kbn/kbn-top-nav-plugin": "workspace:*",
"@kbn/kbn-tp-custom-visualizations-plugin": "workspace:*",
"@kbn/kbn-tp-run-pipeline-plugin": "workspace:*",
"@kbn/key-value-metadata-table": "workspace:*",
"@kbn/kibana-api-cli": "workspace:*",
"@kbn/kibana-cors-test-plugin": "workspace:*",
"@kbn/kibana-overview-plugin": "workspace:*",
"@kbn/kibana-react-plugin": "workspace:*",
"@kbn/kibana-usage-collection-plugin": "workspace:*",
"@kbn/kibana-utils-plugin": "workspace:*",
"@kbn/kql": "workspace:*",
"@kbn/kubernetes-security-plugin": "workspace:*",
"@kbn/langchain": "workspace:*",
"@kbn/langgraph-checkpoint-saver": "workspace:*",
"@kbn/language-documentation": "workspace:*",
"@kbn/lens-common": "workspace:*",
"@kbn/lens-common-2": "workspace:*",
"@kbn/lens-config-builder-example-plugin": "workspace:*",
"@kbn/lens-embeddable-utils": "workspace:*",
"@kbn/lens-formula-docs": "workspace:*",
"@kbn/lens-inline-editing-example-plugin": "workspace:*",
"@kbn/lens-plugin": "workspace:*",
"@kbn/license-api-guard-plugin": "workspace:*",
"@kbn/license-management-plugin": "workspace:*",
"@kbn/licensing-plugin": "workspace:*",
"@kbn/licensing-types": "workspace:*",
"@kbn/links-plugin": "workspace:*",
"@kbn/lists-plugin": "workspace:*",
"@kbn/llm-tasks-plugin": "workspace:*",
"@kbn/llm-trace-waterfall": "workspace:*",
"@kbn/locator-examples-plugin": "workspace:*",
"@kbn/locator-explorer-plugin": "workspace:*",
"@kbn/lock-manager": "workspace:*",
"@kbn/logging": "workspace:*",
"@kbn/logging-mocks": "workspace:*",
"@kbn/logs-data-access-plugin": "workspace:*",
"@kbn/logs-overview": "workspace:*",
"@kbn/logs-shared-plugin": "workspace:*",
"@kbn/logstash-plugin": "workspace:*",
"@kbn/maintenance-windows-plugin": "workspace:*",
"@kbn/managed-content-badge": "workspace:*",
"@kbn/management-cards-navigation": "workspace:*",
"@kbn/management-plugin": "workspace:*",
"@kbn/management-settings-application": "workspace:*",
"@kbn/management-settings-components-field-category": "workspace:*",
"@kbn/management-settings-components-field-input": "workspace:*",
"@kbn/management-settings-components-field-row": "workspace:*",
"@kbn/management-settings-components-form": "workspace:*",
"@kbn/management-settings-field-definition": "workspace:*",
"@kbn/management-settings-ids": "workspace:*",
"@kbn/management-settings-section-registry": "workspace:*",
"@kbn/management-settings-types": "workspace:*",
"@kbn/management-settings-utilities": "workspace:*",
"@kbn/mapbox-gl": "workspace:*",
"@kbn/maps-custom-raster-source-plugin": "workspace:*",
"@kbn/maps-ems-plugin": "workspace:*",
"@kbn/maps-plugin": "workspace:*",
"@kbn/maps-vector-tile-utils": "workspace:*",
"@kbn/mcp-client": "workspace:*",
"@kbn/metrics": "workspace:*",
"@kbn/metrics-config": "workspace:*",
"@kbn/metrics-data-access-plugin": "workspace:*",
"@kbn/mitre-attack-plugin": "workspace:*",
"@kbn/ml-agg-utils": "workspace:*",
"@kbn/ml-anomaly-utils": "workspace:*",
"@kbn/ml-cancellable-search": "workspace:*",
"@kbn/ml-category-validator": "workspace:*",
"@kbn/ml-chi2test": "workspace:*",
"@kbn/ml-common-types": "workspace:*",
"@kbn/ml-cps": "workspace:*",
"@kbn/ml-cps-common": "workspace:*",
"@kbn/ml-creation-wizard-utils": "workspace:*",
"@kbn/ml-data-frame-analytics-utils": "workspace:*",
"@kbn/ml-data-grid": "workspace:*",
"@kbn/ml-data-view-utils": "workspace:*",
"@kbn/ml-date-picker": "workspace:*",
"@kbn/ml-date-utils": "workspace:*",
"@kbn/ml-error-utils": "workspace:*",
"@kbn/ml-field-stats-flyout": "workspace:*",
"@kbn/ml-in-memory-table": "workspace:*",
"@kbn/ml-is-defined": "workspace:*",
"@kbn/ml-is-populated-object": "workspace:*",
"@kbn/ml-local-storage": "workspace:*",
"@kbn/ml-nested-property": "workspace:*",
"@kbn/ml-number-utils": "workspace:*",
"@kbn/ml-parse-interval": "workspace:*",
"@kbn/ml-plugin": "workspace:*",
"@kbn/ml-query-utils": "workspace:*",
"@kbn/ml-random-sampler-utils": "workspace:*",
"@kbn/ml-response-stream": "workspace:*",
"@kbn/ml-route-utils": "workspace:*",
"@kbn/ml-runtime-field-utils": "workspace:*",
"@kbn/ml-server-schemas": "workspace:*",
"@kbn/ml-string-hash": "workspace:*",
"@kbn/ml-time-buckets": "workspace:*",
"@kbn/ml-trained-models-utils": "workspace:*",
"@kbn/ml-ui-actions": "workspace:*",
"@kbn/ml-url-state": "workspace:*",
"@kbn/ml-validators": "workspace:*",
"@kbn/monaco": "workspace:*",
"@kbn/monitoring-collection-plugin": "workspace:*",
"@kbn/monitoring-plugin": "workspace:*",
"@kbn/navigation-customization-components": "workspace:*",
"@kbn/navigation-plugin": "workspace:*",
"@kbn/newsfeed-plugin": "workspace:*",
"@kbn/newsfeed-test-plugin": "workspace:*",
"@kbn/nightshift-ai": "workspace:*",
"@kbn/nightshift-investigations-plugin": "workspace:*",
"@kbn/nightshift-plugin": "workspace:*",
"@kbn/no-data-page-plugin": "workspace:*",
"@kbn/node-libs-browser-webpack-plugin": "workspace:*",
"@kbn/notification-center-plugin": "workspace:*",
"@kbn/notifications-plugin": "workspace:*",
"@kbn/object-utils": "workspace:*",
"@kbn/object-versioning": "workspace:*",
"@kbn/object-versioning-utils": "workspace:*",
"@kbn/observability-agent-builder-plugin": "workspace:*",
"@kbn/observability-ai-assistant-app-plugin": "workspace:*",
"@kbn/observability-ai-assistant-management-plugin": "workspace:*",
"@kbn/observability-ai-assistant-plugin": "workspace:*",
"@kbn/observability-alert-details": "workspace:*",
"@kbn/observability-alerting-plugin": "workspace:*",
"@kbn/observability-alerting-test-data": "workspace:*",
"@kbn/observability-fixtures-plugin": "workspace:*",
"@kbn/observability-get-padded-alert-time-range-util": "workspace:*",
"@kbn/observability-logs-explorer-plugin": "workspace:*",
"@kbn/observability-nav-icons": "workspace:*",
"@kbn/observability-onboarding-plugin": "workspace:*",
"@kbn/observability-plugin": "workspace:*",
"@kbn/observability-schema": "workspace:*",
"@kbn/observability-shared-plugin": "workspace:*",
"@kbn/observability-utils-browser": "workspace:*",
"@kbn/observability-utils-common": "workspace:*",
"@kbn/observability-utils-server": "workspace:*",
"@kbn/occ": "workspace:*",
"@kbn/oidc-provider-plugin": "workspace:*",
"@kbn/open-telemetry-instrumented-plugin": "workspace:*",
"@kbn/openapi-common": "workspace:*",
"@kbn/opentelemetry-attributes": "workspace:*",
"@kbn/opentelemetry-utils": "workspace:*",
"@kbn/osquery-io-ts-types": "workspace:*",
"@kbn/osquery-plugin": "workspace:*",
"@kbn/otel-semantic-conventions": "workspace:*",
"@kbn/otel-telemetry-collection-plugin": "workspace:*",
"@kbn/paertial-results-example-plugin": "workspace:*",
"@kbn/painless-lab-plugin": "workspace:*",
"@kbn/palettes": "workspace:*",
"@kbn/panel-loader": "workspace:*",
"@kbn/portable-dashboards-example": "workspace:*",