-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathLICENSES_DEPENDENCIES.txt
More file actions
2544 lines (2541 loc) · 142 KB
/
Copy pathLICENSES_DEPENDENCIES.txt
File metadata and controls
2544 lines (2541 loc) · 142 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
Summary Output
├─ MIT: 282
├─ ISC: 38
├─ Apache-2.0: 13
├─ BSD-3-Clause: 10
├─ MIT*: 9
├─ BSD-2-Clause: 9
├─ BlueOak-1.0.0: 3
├─ Apache-2.0 OR MIT: 2
├─ 0BSD: 2
├─ (MIT OR CC0-1.0): 2
├─ Python-2.0: 1
├─ CC-BY-4.0: 1
├─ Apache*: 1
└─ CC0-1.0: 1
-------------
Detailed Output
├─ @aashutoshrathi/word-wrap@1.2.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aashutoshrathi/word-wrap
│ ├─ publisher: Jon Schlinkert
│ ├─ url: https://github.com/jonschlinkert
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@aashutoshrathi/word-wrap
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@aashutoshrathi/word-wrap/LICENSE
├─ @alloc/quick-lru@5.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/quick-lru
│ ├─ publisher: Sindre Sorhus
│ ├─ email: sindresorhus@gmail.com
│ ├─ url: https://sindresorhus.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@alloc/quick-lru
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@alloc/quick-lru/license
├─ @ampproject/remapping@2.3.0
│ ├─ licenses: Apache-2.0
│ ├─ repository: https://github.com/ampproject/remapping
│ ├─ publisher: Justin Ridgewell
│ ├─ email: jridgewell@google.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@ampproject/remapping
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@ampproject/remapping/LICENSE
├─ @aptabase/web@0.4.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aptabase/aptabase-js
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@aptabase/web
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@aptabase/web/LICENSE
├─ @arktype/schema@0.1.13
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/arktypeio/arktype
│ ├─ publisher: David Blass
│ ├─ email: david@arktype.io
│ ├─ url: https://arktype.io
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@arktype/schema
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@arktype/schema/LICENSE
├─ @arktype/util@0.0.48
│ ├─ licenses: MIT*
│ ├─ publisher: David Blass
│ ├─ email: david@arktype.io
│ ├─ url: https://arktype.io
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@arktype/util
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@arktype/util/LICENSE
├─ @babel/runtime@7.24.7
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel
│ ├─ publisher: The Babel Team
│ ├─ url: https://babel.dev/team
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@babel/runtime
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@babel/runtime/LICENSE
├─ @esbuild/darwin-arm64@0.20.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/evanw/esbuild
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@esbuild/darwin-arm64
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@esbuild/darwin-arm64/README.md
├─ @eslint-community/eslint-utils@4.4.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/eslint-community/eslint-utils
│ ├─ publisher: Toru Nagashima
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@eslint-community/eslint-utils
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@eslint-community/eslint-utils/LICENSE
├─ @eslint-community/regexpp@4.10.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/eslint-community/regexpp
│ ├─ publisher: Toru Nagashima
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@eslint-community/regexpp
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@eslint-community/regexpp/LICENSE
├─ @eslint/eslintrc@2.1.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/eslint/eslintrc
│ ├─ publisher: Nicholas C. Zakas
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@eslint/eslintrc
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@eslint/eslintrc/LICENSE
├─ @eslint/js@8.57.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/eslint/eslint
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@eslint/js
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@eslint/js/LICENSE
├─ @exodus/schemasafe@1.3.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/ExodusMovement/schemasafe
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@exodus/schemasafe
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@exodus/schemasafe/LICENSE
├─ @floating-ui/core@1.6.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/floating-ui/floating-ui
│ ├─ publisher: atomiks
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@floating-ui/core
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@floating-ui/core/LICENSE
├─ @floating-ui/dom@1.6.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/floating-ui/floating-ui
│ ├─ publisher: atomiks
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@floating-ui/dom
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@floating-ui/dom/LICENSE
├─ @floating-ui/utils@0.2.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/floating-ui/floating-ui
│ ├─ publisher: atomiks
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@floating-ui/utils
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@floating-ui/utils/LICENSE
├─ @gcornut/valibot-json-schema@0.31.0
│ ├─ licenses: MIT*
│ ├─ repository: https://github.com/gcornut/valibot-json-schema
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@gcornut/valibot-json-schema
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@gcornut/valibot-json-schema/LICENSE.md
├─ @hapi/hoek@9.3.0
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/hapijs/hoek
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@hapi/hoek
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@hapi/hoek/LICENSE.md
├─ @hapi/topo@5.1.0
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/hapijs/topo
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@hapi/topo
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@hapi/topo/LICENSE.md
├─ @humanwhocodes/config-array@0.11.14
│ ├─ licenses: Apache-2.0
│ ├─ repository: https://github.com/humanwhocodes/config-array
│ ├─ publisher: Nicholas C. Zakas
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@humanwhocodes/config-array
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@humanwhocodes/config-array/LICENSE
├─ @humanwhocodes/module-importer@1.0.1
│ ├─ licenses: Apache-2.0
│ ├─ repository: https://github.com/humanwhocodes/module-importer
│ ├─ publisher: Nicholas C. Zaks
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@humanwhocodes/module-importer
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@humanwhocodes/module-importer/LICENSE
├─ @humanwhocodes/object-schema@2.0.2
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/humanwhocodes/object-schema
│ ├─ publisher: Nicholas C. Zakas
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@humanwhocodes/object-schema
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@humanwhocodes/object-schema/LICENSE
├─ @internationalized/date@3.5.4
│ ├─ licenses: Apache-2.0
│ ├─ repository: https://github.com/adobe/react-spectrum/tree/main/packages/@internationalized/date
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@internationalized/date
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@internationalized/date/LICENSE
├─ @isaacs/cliui@8.0.2
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/yargs/cliui
│ ├─ publisher: Ben Coe
│ ├─ email: ben@npmjs.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@isaacs/cliui
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@isaacs/cliui/LICENSE.txt
├─ @jridgewell/gen-mapping@0.3.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jridgewell/gen-mapping
│ ├─ publisher: Justin Ridgewell
│ ├─ email: justin@ridgewell.name
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@jridgewell/gen-mapping
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@jridgewell/gen-mapping/LICENSE
├─ @jridgewell/resolve-uri@3.1.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jridgewell/resolve-uri
│ ├─ publisher: Justin Ridgewell
│ ├─ email: justin@ridgewell.name
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@jridgewell/resolve-uri
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@jridgewell/resolve-uri/LICENSE
├─ @jridgewell/set-array@1.2.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jridgewell/set-array
│ ├─ publisher: Justin Ridgewell
│ ├─ email: justin@ridgewell.name
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@jridgewell/set-array
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@jridgewell/set-array/LICENSE
├─ @jridgewell/sourcemap-codec@1.4.15
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jridgewell/sourcemap-codec
│ ├─ publisher: Rich Harris
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@jridgewell/sourcemap-codec
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@jridgewell/sourcemap-codec/LICENSE
├─ @jridgewell/trace-mapping@0.3.25
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jridgewell/trace-mapping
│ ├─ publisher: Justin Ridgewell
│ ├─ email: justin@ridgewell.name
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@jridgewell/trace-mapping
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@jridgewell/trace-mapping/LICENSE
├─ @melt-ui/svelte@0.76.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/melt-ui/melt-ui
│ ├─ publisher: Thomas G. Lopes
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@melt-ui/svelte
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@melt-ui/svelte/LICENSE
├─ @nodelib/fs.scandir@2.1.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.scandir
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@nodelib/fs.scandir
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@nodelib/fs.scandir/LICENSE
├─ @nodelib/fs.stat@2.0.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@nodelib/fs.stat
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@nodelib/fs.stat/LICENSE
├─ @nodelib/fs.walk@1.2.8
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@nodelib/fs.walk
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@nodelib/fs.walk/LICENSE
├─ @pkgjs/parseargs@0.11.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/pkgjs/parseargs
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@pkgjs/parseargs
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@pkgjs/parseargs/LICENSE
├─ @polka/url@1.0.0-next.24
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/lukeed/polka
│ ├─ publisher: Luke Edwards
│ ├─ email: luke@lukeed.com
│ ├─ url: https://lukeed.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@polka/url
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@polka/url/readme.md
├─ @poppinss/macroable@1.0.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/poppinss/macroable
│ ├─ publisher: virk,poppinss
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@poppinss/macroable
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@poppinss/macroable/LICENSE.md
├─ @rollup/rollup-darwin-arm64@4.16.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/rollup/rollup
│ ├─ publisher: Lukas Taegert-Atkinson
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@rollup/rollup-darwin-arm64
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@rollup/rollup-darwin-arm64/README.md
├─ @sideway/address@4.1.5
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/sideway/address
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@sideway/address
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@sideway/address/LICENSE.md
├─ @sideway/formula@3.0.1
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/sideway/formula
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@sideway/formula
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@sideway/formula/LICENSE.md
├─ @sideway/pinpoint@2.0.0
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/sideway/pinpoint
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@sideway/pinpoint
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@sideway/pinpoint/LICENSE.md
├─ @sinclair/typebox@0.32.34
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sinclairzx81/typebox
│ ├─ publisher: sinclairzx81
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@sinclair/typebox
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@sinclair/typebox/license
├─ @sodaru/yup-to-json-schema@2.0.1
│ ├─ licenses: MIT*
│ ├─ repository: https://github.com/sodaru/yup-to-json-schema
│ ├─ publisher: Raghavendra K R
│ ├─ email: krraghavendra@yahoo.co.in
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@sodaru/yup-to-json-schema
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@sodaru/yup-to-json-schema/LICENSE
├─ @sveltejs/adapter-static@3.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sveltejs/kit
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@sveltejs/adapter-static
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@sveltejs/adapter-static/LICENSE
├─ @sveltejs/kit@2.5.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sveltejs/kit
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@sveltejs/kit
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@sveltejs/kit/LICENSE
├─ @sveltejs/vite-plugin-svelte-inspector@2.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sveltejs/vite-plugin-svelte
│ ├─ publisher: dominikg
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@sveltejs/vite-plugin-svelte-inspector
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@sveltejs/vite-plugin-svelte-inspector/LICENSE
├─ @sveltejs/vite-plugin-svelte@3.0.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sveltejs/vite-plugin-svelte
│ ├─ publisher: dominikg
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@sveltejs/vite-plugin-svelte
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@sveltejs/vite-plugin-svelte/LICENSE
├─ @swc/helpers@0.5.11
│ ├─ licenses: Apache-2.0
│ ├─ repository: https://github.com/swc-project/swc
│ ├─ publisher: 강동윤
│ ├─ email: kdy1997.dev@gmail.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@swc/helpers
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@swc/helpers/LICENSE
├─ @tailwindcss/typography@0.5.13
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/tailwindlabs/tailwindcss-typography
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@tailwindcss/typography
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@tailwindcss/typography/LICENSE
├─ @tauri-apps/api@2.0.0-beta.2
│ ├─ licenses: Apache-2.0 OR MIT
│ ├─ repository: https://github.com/tauri-apps/tauri
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@tauri-apps/plugin-shell/node_modules/@tauri-apps/api
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@tauri-apps/plugin-shell/node_modules/@tauri-apps/api/README.md
├─ @tauri-apps/api@2.0.0-beta.4
│ ├─ licenses: Apache-2.0 OR MIT
│ ├─ repository: https://github.com/tauri-apps/tauri
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@tauri-apps/api
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@tauri-apps/api/README.md
├─ @tauri-apps/cli-darwin-arm64@2.0.0-beta.6
│ ├─ licenses: MIT
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@tauri-apps/cli-darwin-arm64
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@tauri-apps/cli-darwin-arm64/README.md
├─ @tauri-apps/cli@2.0.0-beta.6
│ ├─ licenses: Apache-2.0 OR MIT
│ ├─ repository: https://github.com/tauri-apps/tauri
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@tauri-apps/cli
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@tauri-apps/cli/README.md
├─ @tauri-apps/plugin-dialog@2.0.0-beta.2
│ ├─ licenses: MIT*
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@tauri-apps/plugin-dialog
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@tauri-apps/plugin-dialog/LICENSE.spdx
├─ @tauri-apps/plugin-shell@2.0.0-beta.1
│ ├─ licenses: MIT*
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@tauri-apps/plugin-shell
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@tauri-apps/plugin-shell/LICENSE.spdx
├─ @tauri-apps/plugin-updater@2.0.0-beta.2
│ ├─ licenses: MIT*
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@tauri-apps/plugin-updater
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@tauri-apps/plugin-updater/LICENSE.spdx
├─ @types/cookie@0.6.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@types/cookie
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@types/cookie/LICENSE
├─ @types/eslint@8.56.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@types/eslint
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@types/eslint/LICENSE
├─ @types/estree@1.0.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@types/estree
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@types/estree/LICENSE
├─ @types/json-schema@7.0.15
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@types/json-schema
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@types/json-schema/LICENSE
├─ @types/pug@2.0.10
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@types/pug
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@types/pug/LICENSE
├─ @types/semver@7.5.8
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@types/semver
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@types/semver/LICENSE
├─ @types/validator@13.12.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/DefinitelyTyped/DefinitelyTyped
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@types/validator
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@types/validator/LICENSE
├─ @typescript-eslint/eslint-plugin@7.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/typescript-eslint/typescript-eslint
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@typescript-eslint/eslint-plugin
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@typescript-eslint/eslint-plugin/LICENSE
├─ @typescript-eslint/parser@7.1.0
│ ├─ licenses: BSD-2-Clause
│ ├─ repository: https://github.com/typescript-eslint/typescript-eslint
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@typescript-eslint/parser
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@typescript-eslint/parser/LICENSE
├─ @typescript-eslint/scope-manager@7.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/typescript-eslint/typescript-eslint
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@typescript-eslint/scope-manager
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@typescript-eslint/scope-manager/LICENSE
├─ @typescript-eslint/type-utils@7.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/typescript-eslint/typescript-eslint
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@typescript-eslint/type-utils
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@typescript-eslint/type-utils/LICENSE
├─ @typescript-eslint/types@7.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/typescript-eslint/typescript-eslint
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@typescript-eslint/types
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@typescript-eslint/types/LICENSE
├─ @typescript-eslint/typescript-estree@7.1.0
│ ├─ licenses: BSD-2-Clause
│ ├─ repository: https://github.com/typescript-eslint/typescript-eslint
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@typescript-eslint/typescript-estree
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@typescript-eslint/typescript-estree/LICENSE
├─ @typescript-eslint/utils@7.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/typescript-eslint/typescript-eslint
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@typescript-eslint/utils
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@typescript-eslint/utils/LICENSE
├─ @typescript-eslint/visitor-keys@7.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/typescript-eslint/typescript-eslint
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@typescript-eslint/visitor-keys
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@typescript-eslint/visitor-keys/LICENSE
├─ @ungap/structured-clone@1.2.0
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/ungap/structured-clone
│ ├─ publisher: Andrea Giammarchi
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@ungap/structured-clone
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@ungap/structured-clone/LICENSE
├─ @vinejs/compiler@2.5.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vinejs/compiler
│ ├─ publisher: virk,vinejs
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@vinejs/compiler
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@vinejs/compiler/LICENSE.md
├─ @vinejs/vine@1.8.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vinejs/vine
│ ├─ publisher: virk,vinejs
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@vinejs/vine
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/@vinejs/vine/LICENSE.md
├─ acorn-jsx@5.3.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/acornjs/acorn-jsx
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/acorn-jsx
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/acorn-jsx/LICENSE
├─ acorn@8.11.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/acornjs/acorn
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/acorn
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/acorn/LICENSE
├─ ajv@6.12.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/ajv-validator/ajv
│ ├─ publisher: Evgeny Poberezkin
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/ajv
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/ajv/LICENSE
├─ ansi-regex@5.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/chalk/ansi-regex
│ ├─ publisher: Sindre Sorhus
│ ├─ email: sindresorhus@gmail.com
│ ├─ url: sindresorhus.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/ansi-regex
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/ansi-regex/license
├─ ansi-regex@6.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/chalk/ansi-regex
│ ├─ publisher: Sindre Sorhus
│ ├─ email: sindresorhus@gmail.com
│ ├─ url: https://sindresorhus.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/string-width/node_modules/ansi-regex
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/string-width/node_modules/ansi-regex/license
├─ ansi-styles@4.3.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/chalk/ansi-styles
│ ├─ publisher: Sindre Sorhus
│ ├─ email: sindresorhus@gmail.com
│ ├─ url: sindresorhus.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/ansi-styles
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/ansi-styles/license
├─ ansi-styles@6.2.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/chalk/ansi-styles
│ ├─ publisher: Sindre Sorhus
│ ├─ email: sindresorhus@gmail.com
│ ├─ url: https://sindresorhus.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/wrap-ansi/node_modules/ansi-styles
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/wrap-ansi/node_modules/ansi-styles/license
├─ any-promise@1.3.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/kevinbeaty/any-promise
│ ├─ publisher: Kevin Beaty
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/any-promise
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/any-promise/LICENSE
├─ anymatch@3.1.3
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/micromatch/anymatch
│ ├─ publisher: Elan Shanker
│ ├─ url: https://github.com/es128
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/anymatch
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/anymatch/LICENSE
├─ arg@5.0.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/vercel/arg
│ ├─ publisher: Josh Junon
│ ├─ email: junon@wavetilt.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/arg
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/arg/LICENSE.md
├─ argparse@2.0.1
│ ├─ licenses: Python-2.0
│ ├─ repository: https://github.com/nodeca/argparse
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/argparse
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/argparse/LICENSE
├─ aria-query@5.3.0
│ ├─ licenses: Apache-2.0
│ ├─ repository: https://github.com/A11yance/aria-query
│ ├─ publisher: Jesse Beach
│ ├─ email: splendidnoise@gmail.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/aria-query
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/aria-query/LICENSE
├─ arktype@2.0.0-dev.21
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/arktypeio/arktype
│ ├─ publisher: David Blass
│ ├─ email: david@arktype.io
│ ├─ url: https://arktype.io
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/arktype
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/arktype/LICENSE
├─ array-union@2.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/array-union
│ ├─ publisher: Sindre Sorhus
│ ├─ email: sindresorhus@gmail.com
│ ├─ url: sindresorhus.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/array-union
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/array-union/license
├─ autoprefixer@10.4.19
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/postcss/autoprefixer
│ ├─ publisher: Andrey Sitnik
│ ├─ email: andrey@sitnik.ru
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/autoprefixer
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/autoprefixer/LICENSE
├─ axobject-query@4.0.0
│ ├─ licenses: Apache-2.0
│ ├─ repository: https://github.com/A11yance/axobject-query
│ ├─ publisher: Jesse Beach
│ ├─ email: splendidnoise@gmail.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/axobject-query
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/axobject-query/LICENSE
├─ balanced-match@1.0.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/juliangruber/balanced-match
│ ├─ publisher: Julian Gruber
│ ├─ email: mail@juliangruber.com
│ ├─ url: http://juliangruber.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/balanced-match
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/balanced-match/LICENSE.md
├─ binary-extensions@2.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/binary-extensions
│ ├─ publisher: Sindre Sorhus
│ ├─ email: sindresorhus@gmail.com
│ ├─ url: sindresorhus.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/binary-extensions
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/binary-extensions/license
├─ bits-ui@0.21.12
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/huntabyte/bits-ui
│ ├─ publisher: Hunter Johnston
│ ├─ email: https://github.com/huntabyte
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/bits-ui
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/bits-ui/LICENSE
├─ brace-expansion@1.1.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/juliangruber/brace-expansion
│ ├─ publisher: Julian Gruber
│ ├─ email: mail@juliangruber.com
│ ├─ url: http://juliangruber.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/glob/node_modules/brace-expansion
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/glob/node_modules/brace-expansion/LICENSE
├─ brace-expansion@2.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/juliangruber/brace-expansion
│ ├─ publisher: Julian Gruber
│ ├─ email: mail@juliangruber.com
│ ├─ url: http://juliangruber.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/brace-expansion
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/brace-expansion/LICENSE
├─ braces@3.0.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/micromatch/braces
│ ├─ publisher: Jon Schlinkert
│ ├─ url: https://github.com/jonschlinkert
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/braces
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/braces/LICENSE
├─ browserslist@4.23.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/browserslist/browserslist
│ ├─ publisher: Andrey Sitnik
│ ├─ email: andrey@sitnik.ru
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/browserslist
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/browserslist/LICENSE
├─ buffer-crc32@0.2.13
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/brianloveswords/buffer-crc32
│ ├─ publisher: Brian J. Brennan
│ ├─ email: brianloveswords@gmail.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/buffer-crc32
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/buffer-crc32/LICENSE
├─ buffer-from@1.1.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/LinusU/buffer-from
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/buffer-from
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/buffer-from/LICENSE
├─ buzee@0.2.0
│ ├─ licenses: MIT
│ ├─ publisher: Gurjot Sidhu
│ ├─ email: gurjot@thatgurjot.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/LICENSE
├─ callsites@3.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/callsites
│ ├─ publisher: Sindre Sorhus
│ ├─ email: sindresorhus@gmail.com
│ ├─ url: sindresorhus.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/callsites
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/callsites/license
├─ camelcase-css@2.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/stevenvachon/camelcase-css
│ ├─ publisher: Steven Vachon
│ ├─ email: contact@svachon.com
│ ├─ url: https://www.svachon.com/
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/camelcase-css
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/camelcase-css/license
├─ camelcase@8.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/camelcase
│ ├─ publisher: Sindre Sorhus
│ ├─ email: sindresorhus@gmail.com
│ ├─ url: https://sindresorhus.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/camelcase
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/camelcase/license
├─ caniuse-lite@1.0.30001637
│ ├─ licenses: CC-BY-4.0
│ ├─ repository: https://github.com/browserslist/caniuse-lite
│ ├─ publisher: Ben Briggs
│ ├─ email: beneb.info@gmail.com
│ ├─ url: http://beneb.info
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/caniuse-lite
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/caniuse-lite/LICENSE
├─ chalk@4.1.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/chalk/chalk
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/chalk
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/chalk/license
├─ chokidar@3.6.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/paulmillr/chokidar
│ ├─ publisher: Paul Miller
│ ├─ url: https://paulmillr.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/chokidar
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/chokidar/LICENSE
├─ clsx@2.1.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/lukeed/clsx
│ ├─ publisher: Luke Edwards
│ ├─ email: luke.edwards05@gmail.com
│ ├─ url: https://lukeed.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/clsx
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/clsx/license
├─ cmdk-sv@0.0.18
│ ├─ licenses: MIT*
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/cmdk-sv
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/cmdk-sv/LICENSE
├─ code-red@1.0.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/Rich-Harris/code-red
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/code-red
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/code-red/LICENSE
├─ color-convert@2.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/Qix-/color-convert
│ ├─ publisher: Heather Arthur
│ ├─ email: fayearthur@gmail.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/color-convert
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/color-convert/LICENSE
├─ color-name@1.1.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/colorjs/color-name
│ ├─ publisher: DY
│ ├─ email: dfcreative@gmail.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/color-name
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/color-name/LICENSE
├─ commander@4.1.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/tj/commander.js
│ ├─ publisher: TJ Holowaychuk
│ ├─ email: tj@vision-media.ca
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/commander
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/commander/LICENSE
├─ compromise-dates@3.5.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/spencermountain/compromise
│ ├─ publisher: Spencer Kelly
│ ├─ email: spencermountain@gmail.com
│ ├─ url: http://spencermounta.in
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/compromise-dates
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/compromise-dates/README.md
├─ compromise@14.12.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/spencermountain/compromise
│ ├─ publisher: Spencer Kelly
│ ├─ email: spencermountain@gmail.com
│ ├─ url: http://spencermounta.in
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/compromise
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/compromise/LICENSE
├─ concat-map@0.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/substack/node-concat-map
│ ├─ publisher: James Halliday
│ ├─ email: mail@substack.net
│ ├─ url: http://substack.net
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/concat-map
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/concat-map/LICENSE
├─ cookie@0.6.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jshttp/cookie
│ ├─ publisher: Roman Shtylman
│ ├─ email: shtylman@gmail.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/cookie
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/cookie/LICENSE
├─ cross-spawn@7.0.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/moxystudio/node-cross-spawn
│ ├─ publisher: André Cruz
│ ├─ email: andre@moxy.studio
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/cross-spawn
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/cross-spawn/LICENSE
├─ css-tree@2.3.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/csstree/csstree
│ ├─ publisher: Roman Dvornov
│ ├─ email: rdvornov@gmail.com
│ ├─ url: https://github.com/lahmatiy
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/css-tree
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/css-tree/LICENSE
├─ cssesc@3.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/mathiasbynens/cssesc
│ ├─ publisher: Mathias Bynens
│ ├─ url: https://mathiasbynens.be/
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/cssesc
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/cssesc/LICENSE-MIT.txt
├─ dayjs@1.11.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/iamkun/dayjs
│ ├─ publisher: iamkun
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/dayjs
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/dayjs/LICENSE
├─ debug@4.3.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/debug-js/debug
│ ├─ publisher: Josh Junon
│ ├─ email: josh.junon@protonmail.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/debug
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/debug/LICENSE
├─ deep-is@0.1.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/thlorenz/deep-is
│ ├─ publisher: Thorsten Lorenz
│ ├─ email: thlorenz@gmx.de
│ ├─ url: http://thlorenz.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/deep-is
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/deep-is/LICENSE
├─ deepmerge@4.3.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/TehShrike/deepmerge
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/deepmerge
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/deepmerge/license.txt
├─ dequal@2.0.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/lukeed/dequal
│ ├─ publisher: Luke Edwards
│ ├─ email: luke.edwards05@gmail.com
│ ├─ url: https://lukeed.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/dequal
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/dequal/license
├─ detect-indent@6.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/detect-indent
│ ├─ publisher: Sindre Sorhus
│ ├─ email: sindresorhus@gmail.com
│ ├─ url: sindresorhus.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/detect-indent
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/detect-indent/license
├─ devalue@4.3.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/Rich-Harris/devalue
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/devalue
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/devalue/LICENSE
├─ devalue@5.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/Rich-Harris/devalue
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/sveltekit-superforms/node_modules/devalue
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/sveltekit-superforms/node_modules/devalue/LICENSE
├─ didyoumean@1.2.2
│ ├─ licenses: Apache-2.0
│ ├─ repository: https://github.com/dcporter/didyoumean.js
│ ├─ publisher: Dave Porter
│ ├─ email: dcporter@gmail.com
│ ├─ url: http://dcporter.net/
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/didyoumean
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/didyoumean/LICENSE
├─ dir-glob@3.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/kevva/dir-glob
│ ├─ publisher: Kevin Mårtensson
│ ├─ email: kevinmartensson@gmail.com
│ ├─ url: github.com/kevva
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/dir-glob
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/dir-glob/license
├─ dlv@1.1.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/developit/dlv
│ ├─ publisher: Jason Miller
│ ├─ email: jason@developit.ca
│ ├─ url: http://jasonformat.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/dlv
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/dlv/README.md
├─ doctrine@3.0.0
│ ├─ licenses: Apache-2.0
│ ├─ repository: https://github.com/eslint/doctrine
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/doctrine
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/doctrine/LICENSE
├─ dotenv@16.4.5
│ ├─ licenses: BSD-2-Clause
│ ├─ repository: https://github.com/motdotla/dotenv
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/dotenv
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/dotenv/LICENSE
├─ eastasianwidth@0.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/komagata/eastasianwidth
│ ├─ publisher: Masaki Komagata
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/eastasianwidth
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/eastasianwidth/README.md
├─ efrt@2.7.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/spencermountain/efrt
│ ├─ publisher: Spencer Kelly
│ ├─ email: spencermountain@gmail.com
│ ├─ url: http://spencermounta.in
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/efrt
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/efrt/LICENSE
├─ electron-to-chromium@1.4.812
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/kilian/electron-to-chromium
│ ├─ publisher: Kilian Valkhof
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/electron-to-chromium
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/electron-to-chromium/LICENSE
├─ emoji-regex@8.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/mathiasbynens/emoji-regex
│ ├─ publisher: Mathias Bynens
│ ├─ url: https://mathiasbynens.be/
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/string-width-cjs/node_modules/emoji-regex
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/string-width-cjs/node_modules/emoji-regex/LICENSE-MIT.txt
├─ emoji-regex@9.2.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/mathiasbynens/emoji-regex
│ ├─ publisher: Mathias Bynens
│ ├─ url: https://mathiasbynens.be/
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/emoji-regex
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/emoji-regex/LICENSE-MIT.txt
├─ es6-promise@3.3.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/stefanpenner/es6-promise
│ ├─ publisher: Yehuda Katz, Tom Dale, Stefan Penner and contributors
│ ├─ url: Conversion to ES6 API by Jake Archibald
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/es6-promise
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/es6-promise/LICENSE
├─ esbuild-runner@2.2.2
│ ├─ licenses: Apache*
│ ├─ repository: https://github.com/folke/esbuild-runner
│ ├─ publisher: Folke Lemaitre
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/esbuild-runner
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/esbuild-runner/LICENSE
├─ esbuild@0.20.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/evanw/esbuild
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/esbuild
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/esbuild/LICENSE.md
├─ escalade@3.1.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/lukeed/escalade
│ ├─ publisher: Luke Edwards
│ ├─ email: luke.edwards05@gmail.com
│ ├─ url: https://lukeed.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/escalade
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/escalade/license
├─ escape-string-regexp@4.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/escape-string-regexp
│ ├─ publisher: Sindre Sorhus
│ ├─ email: sindresorhus@gmail.com
│ ├─ url: https://sindresorhus.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/escape-string-regexp
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/escape-string-regexp/license
├─ eslint-compat-utils@0.1.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/ota-meshi/eslint-compat-utils
│ ├─ publisher: Yosuke Ota
│ ├─ url: https://github.com/ota-meshi
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/eslint-compat-utils
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/eslint-compat-utils/LICENSE
├─ eslint-config-prettier@9.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/prettier/eslint-config-prettier
│ ├─ publisher: Simon Lydell
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/eslint-config-prettier
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/eslint-config-prettier/LICENSE
├─ eslint-plugin-svelte@2.35.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sveltejs/eslint-plugin-svelte
│ ├─ publisher: Yosuke Ota
│ ├─ url: https://github.com/ota-meshi
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/eslint-plugin-svelte
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/eslint-plugin-svelte/LICENSE
├─ eslint-scope@7.2.2
│ ├─ licenses: BSD-2-Clause
│ ├─ repository: https://github.com/eslint/eslint-scope
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/eslint-scope
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/eslint-scope/LICENSE
├─ eslint-visitor-keys@3.4.3
│ ├─ licenses: Apache-2.0
│ ├─ repository: https://github.com/eslint/eslint-visitor-keys
│ ├─ publisher: Toru Nagashima
│ ├─ url: https://github.com/mysticatea
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/eslint-visitor-keys
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/eslint-visitor-keys/LICENSE
├─ eslint@8.57.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/eslint/eslint
│ ├─ publisher: Nicholas C. Zakas
│ ├─ email: nicholas+npm@nczconsulting.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/eslint
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/eslint/LICENSE
├─ esm-env@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/benmccann/esm-env
│ ├─ publisher: Ben McCann
│ ├─ url: https://www.benmccann.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/esm-env
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/esm-env/LICENSE
├─ espree@9.6.1
│ ├─ licenses: BSD-2-Clause
│ ├─ repository: https://github.com/eslint/espree
│ ├─ publisher: Nicholas C. Zakas
│ ├─ email: nicholas+npm@nczconsulting.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/espree
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/espree/LICENSE
├─ esquery@1.5.0
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/estools/esquery
│ ├─ publisher: Joel Feenstra
│ ├─ email: jrfeenst+esquery@gmail.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/esquery
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/esquery/license.txt
├─ esrecurse@4.3.0
│ ├─ licenses: BSD-2-Clause
│ ├─ repository: https://github.com/estools/esrecurse
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/esrecurse
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/esrecurse/README.md
├─ estraverse@5.3.0
│ ├─ licenses: BSD-2-Clause
│ ├─ repository: https://github.com/estools/estraverse
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/estraverse
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/estraverse/LICENSE.BSD
├─ estree-walker@3.0.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/Rich-Harris/estree-walker
│ ├─ publisher: Rich Harris
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/estree-walker
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/estree-walker/LICENSE
├─ esutils@2.0.3
│ ├─ licenses: BSD-2-Clause
│ ├─ repository: https://github.com/estools/esutils
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/esutils
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/esutils/LICENSE.BSD
├─ fast-deep-equal@3.1.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/epoberezkin/fast-deep-equal
│ ├─ publisher: Evgeny Poberezkin
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/fast-deep-equal
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/fast-deep-equal/LICENSE
├─ fast-glob@3.3.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/mrmlnc/fast-glob
│ ├─ publisher: Denis Malinochkin
│ ├─ url: https://mrmlnc.com
│ ├─ path: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/fast-glob
│ └─ licenseFile: /Users/thatgurjot/Documents/GitHub/buzee-tauri/node_modules/fast-glob/LICENSE
├─ fast-json-stable-stringify@2.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/epoberezkin/fast-json-stable-stringify
│ ├─ publisher: James Halliday
│ ├─ email: mail@substack.net
│ ├─ url: http://substack.net