forked from marshallswain/feathers-pinia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
11363 lines (11363 loc) · 420 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "feathers-pinia",
"version": "0.34.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "feathers-pinia",
"version": "0.34.0",
"dependencies": {
"@feathersjs/adapter-commons": "5.0.0-pre.18",
"@feathersjs/commons": "5.0.0-pre.18",
"@feathersjs/feathers": "5.0.0-pre.18",
"@types/lz-string": "^1.3.34",
"bson-objectid": "^2.0.3",
"events": "^3.3.0",
"fast-copy": "^2.1.3",
"fast-json-stable-stringify": "^2.1.0",
"just-debounce": "^1.1.0",
"lodash": "^4.17.21",
"lz-string": "^1.4.4",
"sift": "^16.0.0",
"vue-demi": "latest"
},
"devDependencies": {
"@babel/types": "^7.18.2",
"@cspell/dict-fr-fr": "^2.1.0",
"@feathersjs/authentication-client": "5.0.0-pre.18",
"@feathersjs/authentication-jwt": "^2.0.10",
"@feathersjs/rest-client": "5.0.0-pre.18",
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.36",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/compiler-sfc": "^3.2.36",
"@vue/eslint-config-typescript": "^10.0.0",
"autoprefixer": "^10.4.7",
"axios": "^0.27.2",
"c8": "^7.11.3",
"cspell-cli": "^6.0.0",
"eslint": "^8.16.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^9.0.1",
"feathers-memory": "^4.1.0",
"path": "^0.12.7",
"pinia": "^2.0.14",
"postcss-nested": "^5.0.6",
"prettier": "^2.6.2",
"shx": "^0.3.4",
"tailwindcss": "^3.0.24",
"typescript": "^4.7.2",
"vite": "^2.9.9",
"vitepress": "^0.22.4",
"vitest": "^0.12.9",
"vue": "^3.2.36",
"vue-tsc": "^0.35.0"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"pinia": "^2.0.0",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
}
},
"node_modules/@algolia/autocomplete-core": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.6.3.tgz",
"integrity": "sha512-dqQqRt01fX3YuVFrkceHsoCnzX0bLhrrg8itJI1NM68KjrPYQPYsE+kY8EZTCM4y8VDnhqJErR73xe/ZsV+qAA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@algolia/autocomplete-shared": "1.6.3"
}
},
"node_modules/@algolia/autocomplete-shared": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.6.3.tgz",
"integrity": "sha512-UV46bnkTztyADFaETfzFC5ryIdGVb2zpAoYgu0tfcuYWjhg1KbLXveFffZIrGVoboqmAk1b+jMrl6iCja1i3lg==",
"dev": true,
"license": "MIT"
},
"node_modules/@algolia/cache-browser-local-storage": {
"version": "4.13.1",
"resolved": "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.13.1.tgz",
"integrity": "sha512-UAUVG2PEfwd/FfudsZtYnidJ9eSCpS+LW9cQiesePQLz41NAcddKxBak6eP2GErqyFagSlnVXe/w2E9h2m2ttg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@algolia/cache-common": "4.13.1"
}
},
"node_modules/@algolia/cache-common": {
"version": "4.13.1",
"resolved": "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.13.1.tgz",
"integrity": "sha512-7Vaf6IM4L0Jkl3sYXbwK+2beQOgVJ0mKFbz/4qSxKd1iy2Sp77uTAazcX+Dlexekg1fqGUOSO7HS4Sx47ZJmjA==",
"dev": true,
"license": "MIT"
},
"node_modules/@algolia/cache-in-memory": {
"version": "4.13.1",
"resolved": "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.13.1.tgz",
"integrity": "sha512-pZzybCDGApfA/nutsFK1P0Sbsq6fYJU3DwIvyKg4pURerlJM4qZbB9bfLRef0FkzfQu7W11E4cVLCIOWmyZeuQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@algolia/cache-common": "4.13.1"
}
},
"node_modules/@algolia/client-account": {
"version": "4.13.1",
"resolved": "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.13.1.tgz",
"integrity": "sha512-TFLiZ1KqMiir3FNHU+h3b0MArmyaHG+eT8Iojio6TdpeFcAQ1Aiy+2gb3SZk3+pgRJa/BxGmDkRUwE5E/lv3QQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@algolia/client-common": "4.13.1",
"@algolia/client-search": "4.13.1",
"@algolia/transporter": "4.13.1"
}
},
"node_modules/@algolia/client-analytics": {
"version": "4.13.1",
"resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.13.1.tgz",
"integrity": "sha512-iOS1JBqh7xaL5x00M5zyluZ9+9Uy9GqtYHv/2SMuzNW1qP7/0doz1lbcsP3S7KBbZANJTFHUOfuqyRLPk91iFA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@algolia/client-common": "4.13.1",
"@algolia/client-search": "4.13.1",
"@algolia/requester-common": "4.13.1",
"@algolia/transporter": "4.13.1"
}
},
"node_modules/@algolia/client-common": {
"version": "4.13.1",
"resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.13.1.tgz",
"integrity": "sha512-LcDoUE0Zz3YwfXJL6lJ2OMY2soClbjrrAKB6auYVMNJcoKZZ2cbhQoFR24AYoxnGUYBER/8B+9sTBj5bj/Gqbg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@algolia/requester-common": "4.13.1",
"@algolia/transporter": "4.13.1"
}
},
"node_modules/@algolia/client-personalization": {
"version": "4.13.1",
"resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.13.1.tgz",
"integrity": "sha512-1CqrOW1ypVrB4Lssh02hP//YxluoIYXAQCpg03L+/RiXJlCs+uIqlzC0ctpQPmxSlTK6h07kr50JQoYH/TIM9w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@algolia/client-common": "4.13.1",
"@algolia/requester-common": "4.13.1",
"@algolia/transporter": "4.13.1"
}
},
"node_modules/@algolia/client-search": {
"version": "4.13.1",
"resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.13.1.tgz",
"integrity": "sha512-YQKYA83MNRz3FgTNM+4eRYbSmHi0WWpo019s5SeYcL3HUan/i5R09VO9dk3evELDFJYciiydSjbsmhBzbpPP2A==",
"dev": true,
"license": "MIT",
"dependencies": {
"@algolia/client-common": "4.13.1",
"@algolia/requester-common": "4.13.1",
"@algolia/transporter": "4.13.1"
}
},
"node_modules/@algolia/logger-common": {
"version": "4.13.1",
"resolved": "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.13.1.tgz",
"integrity": "sha512-L6slbL/OyZaAXNtS/1A8SAbOJeEXD5JcZeDCPYDqSTYScfHu+2ePRTDMgUTY4gQ7HsYZ39N1LujOd8WBTmM2Aw==",
"dev": true,
"license": "MIT"
},
"node_modules/@algolia/logger-console": {
"version": "4.13.1",
"resolved": "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.13.1.tgz",
"integrity": "sha512-7jQOTftfeeLlnb3YqF8bNgA2GZht7rdKkJ31OCeSH2/61haO0tWPoNRjZq9XLlgMQZH276pPo0NdiArcYPHjCA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@algolia/logger-common": "4.13.1"
}
},
"node_modules/@algolia/requester-browser-xhr": {
"version": "4.13.1",
"resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.13.1.tgz",
"integrity": "sha512-oa0CKr1iH6Nc7CmU6RE7TnXMjHnlyp7S80pP/LvZVABeJHX3p/BcSCKovNYWWltgTxUg0U1o+2uuy8BpMKljwA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@algolia/requester-common": "4.13.1"
}
},
"node_modules/@algolia/requester-common": {
"version": "4.13.1",
"resolved": "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.13.1.tgz",
"integrity": "sha512-eGVf0ID84apfFEuXsaoSgIxbU3oFsIbz4XiotU3VS8qGCJAaLVUC5BUJEkiFENZIhon7hIB4d0RI13HY4RSA+w==",
"dev": true,
"license": "MIT"
},
"node_modules/@algolia/requester-node-http": {
"version": "4.13.1",
"resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.13.1.tgz",
"integrity": "sha512-7C0skwtLdCz5heKTVe/vjvrqgL/eJxmiEjHqXdtypcE5GCQCYI15cb+wC4ytYioZDMiuDGeVYmCYImPoEgUGPw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@algolia/requester-common": "4.13.1"
}
},
"node_modules/@algolia/transporter": {
"version": "4.13.1",
"resolved": "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.13.1.tgz",
"integrity": "sha512-pICnNQN7TtrcYJqqPEXByV8rJ8ZRU2hCiIKLTLRyNpghtQG3VAFk6fVtdzlNfdUGZcehSKGarPIZEHlQXnKjgw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@algolia/cache-common": "4.13.1",
"@algolia/logger-common": "4.13.1",
"@algolia/requester-common": "4.13.1"
}
},
"node_modules/@babel/code-frame": {
"version": "7.16.7",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz",
"integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/highlight": "^7.16.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.16.7",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
"integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.17.12",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.12.tgz",
"integrity": "sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-validator-identifier": "^7.16.7",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight/node_modules/ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dev": true,
"license": "MIT",
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dev": true,
"license": "MIT",
"dependencies": {
"color-name": "1.1.3"
}
},
"node_modules/@babel/highlight/node_modules/color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
"dev": true,
"license": "MIT"
},
"node_modules/@babel/highlight/node_modules/escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/@babel/highlight/node_modules/has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dev": true,
"license": "MIT",
"dependencies": {
"has-flag": "^3.0.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/parser": {
"version": "7.18.3",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.3.tgz",
"integrity": "sha512-rL50YcEuHbbauAFAysNsJA4/f89fGTOBRNs9P81sniKnKAr4xULe5AecolcsKbi88xu0ByWYDj/S1AJ3FSFuSQ==",
"license": "MIT",
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/types": {
"version": "7.18.2",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.2.tgz",
"integrity": "sha512-0On6B8A4/+mFUto5WERt3EEuG1NznDirvwca1O8UwXQHVY8g3R7OzYgxXdOfMwLO08UrpUD/2+3Bclyq+/C94Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-validator-identifier": "^7.16.7",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@bcoe/v8-coverage": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
"integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/cspell-bundled-dicts": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0.tgz",
"integrity": "sha512-n6fr7V57og7Sp9Wb2K4W3ag3yvRR/hl0p1lSvA+AMnatDbYm8id/5YUlc+AdXlOb604i1fAmHLQ/1dNvm3PMMw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@cspell/dict-ada": "^2.0.0",
"@cspell/dict-aws": "^2.0.0",
"@cspell/dict-bash": "^2.0.2",
"@cspell/dict-companies": "^2.0.4",
"@cspell/dict-cpp": "^3.1.0",
"@cspell/dict-cryptocurrencies": "^2.0.0",
"@cspell/dict-csharp": "^3.0.1",
"@cspell/dict-css": "^2.0.0",
"@cspell/dict-dart": "^1.1.0",
"@cspell/dict-django": "^2.0.0",
"@cspell/dict-dotnet": "^2.0.1",
"@cspell/dict-elixir": "^2.0.1",
"@cspell/dict-en_us": "^2.2.5",
"@cspell/dict-en-gb": "^1.1.33",
"@cspell/dict-filetypes": "^2.0.1",
"@cspell/dict-fonts": "^2.0.0",
"@cspell/dict-fullstack": "^2.0.5",
"@cspell/dict-git": "^1.0.1",
"@cspell/dict-golang": "^3.0.1",
"@cspell/dict-haskell": "^2.0.0",
"@cspell/dict-html": "^3.0.1",
"@cspell/dict-html-symbol-entities": "^3.0.0",
"@cspell/dict-java": "^2.0.0",
"@cspell/dict-latex": "^2.0.3",
"@cspell/dict-lorem-ipsum": "^2.0.0",
"@cspell/dict-lua": "^2.0.0",
"@cspell/dict-node": "^2.0.1",
"@cspell/dict-npm": "^2.0.3",
"@cspell/dict-php": "^2.0.0",
"@cspell/dict-powershell": "^2.0.0",
"@cspell/dict-public-licenses": "^1.0.4",
"@cspell/dict-python": "^3.0.5",
"@cspell/dict-r": "^1.0.2",
"@cspell/dict-ruby": "^2.0.1",
"@cspell/dict-rust": "^2.0.0",
"@cspell/dict-scala": "^2.0.0",
"@cspell/dict-software-terms": "^2.1.7",
"@cspell/dict-swift": "^1.0.2",
"@cspell/dict-typescript": "^2.0.0",
"@cspell/dict-vue": "^2.0.2"
},
"engines": {
"node": ">=14"
}
},
"node_modules/@cspell/cspell-pipe": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0.tgz",
"integrity": "sha512-oehpfj8tOoFep34uOCABdpsqisg37Htc+DjOu5pT1gtzozReSdahD5dQUKAp/ND/tttdE4SWQUMUVZq6cxvTvw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=14"
}
},
"node_modules/@cspell/cspell-types": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0.tgz",
"integrity": "sha512-N8wGQU+n64s3cIMC/5WJzo6UT/Jetxz6oSdOr0SksCHO84I6QR1ORwsXM3ej7x6490uoTM+cf11CSYrw6ma+bg==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=14"
}
},
"node_modules/@cspell/dict-ada": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-2.0.0.tgz",
"integrity": "sha512-4gfJEYXVwz6IN2LBaT6QoUV4pqaR35i0z0u9O684vLuVczvNJIHa4vNaSEFBr9d6xxncUyqstgP9P73ajJjh9A==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-aws": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-2.0.0.tgz",
"integrity": "sha512-NKz7pDZ7pwj/b33i3f4WLpC1rOOUMmENwYgftxU+giU2YBeKM2wZbMTSEIzsrel56r0UlQYmdIVlP/B4nnVaoQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-bash": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-2.0.3.tgz",
"integrity": "sha512-iw78lmxm49q2LhHTQCSu9zs85E8Sm6ui82OvxajU9rdhckFzZoj/KCQi9P0gFuL+w3WmQObHqdH2/sxK4oi2wA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-companies": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-2.0.5.tgz",
"integrity": "sha512-H8+LU+gDUeJ8RcV1kMSIiHa5PE/8tYyA2tg/s6ssHtsgsJ206I+cRFV8yAlu0mUUCXD617+KKXmclZ0eZ7ku4w==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-cpp": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-3.1.0.tgz",
"integrity": "sha512-lav99zUQ+iPq6dkQRnTN0+KE9th0UG6Nwl34afyEGJ8CN5Dcq/RJjCVvOkLw6vPvs505xrvQcZW1huftQK8WVg==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-cryptocurrencies": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-2.0.0.tgz",
"integrity": "sha512-nREysmmfOp7L2YCRAUufQahwD5/Punzb5AZ6eyg4zUamdRWHgBFphb5/9h2flt1vgdUfhc6hZcML21Ci7iXjaA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-csharp": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-3.0.1.tgz",
"integrity": "sha512-xkfQu03F388w4sdVQSSjrVMkxAxpTYB2yW7nw0XYtTjl3L/jBgvTr/j1BTjdFbQhdNf10Lg0Ak1kXOjmHodVqA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-css": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-2.0.0.tgz",
"integrity": "sha512-MrFyswFHnPh4H0u6IlV4eHy+ZCUrrHzeL161LyTOqCvaKpbZavMgNYXzZqTF9xafO0iLgwKrl+Gkclu1KVBg0Q==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-dart": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-dart/-/dict-dart-1.1.1.tgz",
"integrity": "sha512-XBOCpezXrgFN18kGEwqMpTUGZdw4BjCoJrNOo6qBdcdZySCrEHLwELraLOkcSba2kM4stmTp0t59FkwtP8TKOA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-django": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-2.0.0.tgz",
"integrity": "sha512-GkJdJv6cmzrKcmq2/oxTXjKF5uv71r4eTqnFmgPbNBW1t+G4VYpzOf0QrVQrhx2RC4DdW5XfcTf+iS0FxHOTmw==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-dotnet": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-2.0.1.tgz",
"integrity": "sha512-b1n4crJRW0WZVf9Gp/52j/tDtjYiZ3N81fIyfqPlBrjsh/5AivfA697DYwQ2mr8ngNX7RsqRtYNQjealA1rEnQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-elixir": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-2.0.1.tgz",
"integrity": "sha512-eTTTxZt1FqGkM780yFDxsGHvTbWqvlK8YISSccK8FyrB6ULW+uflQlNS5AnWg3uWKC48b7pQott+odYCsPJ+Ow==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-en_us": {
"version": "2.2.5",
"resolved": "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-2.2.5.tgz",
"integrity": "sha512-gRHem02ZY83AQUTYBxtiVNmtM6gWFCJKumRoAKLj7vWYelmNLcCBsMA3BOOOJ7cZNKCI04lDEdh0u2f2akKZtQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-en-gb": {
"version": "1.1.33",
"resolved": "https://registry.npmjs.org/@cspell/dict-en-gb/-/dict-en-gb-1.1.33.tgz",
"integrity": "sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-filetypes": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-2.0.1.tgz",
"integrity": "sha512-bQ7K3U/3hKO2lpQjObf0veNP/n50qk5CVezSwApMBckf/sAVvDTR1RGAvYdr+vdQnkdQrk6wYmhbshXi0sLDVg==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-fonts": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-2.0.0.tgz",
"integrity": "sha512-AgkTalphfDPtKFPYmEExDcj8rRCh86xlOSXco8tehOEkYVYbksOk9XH0YVH34RFpy93YBd2nnVGLgyGVwagcPw==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-fr-fr": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-fr-fr/-/dict-fr-fr-2.1.0.tgz",
"integrity": "sha512-P2HejLDpRZeHrFewkhkFVxl3PuscGaggOhmHyB7LfHSfo7XF/0Oj3m5asKKETXxKiUGGLmNNAsHM9FNtmgulwQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-fullstack": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-2.0.6.tgz",
"integrity": "sha512-R2E2xvbHvvRwwurxfpBJDRIJjXBMfEPF5WNV3LTOEMRqkZtoYCeJK9aqc8LHlmJMtAbnN1cx//BCDIyTJ0rO0A==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-git": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-git/-/dict-git-1.0.1.tgz",
"integrity": "sha512-Rk+eTof/9inF11lvxmkCRK+gODatA3qai8kSASv6OG/JfPvpj7fTHErx/rdgPw/LOTDUafnoTjTYmj7B2MOQXg==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-golang": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-3.0.1.tgz",
"integrity": "sha512-0KNfXTbxHW2l8iVjxeOf+KFv9Qrw3z5cyKnkuYJWlBTSB5KcUBfeKCb4fsds26VdANqiy6U91b4gDx5kNEmBjQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-haskell": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-2.0.0.tgz",
"integrity": "sha512-cjX1Br+gSWqtcmJD/IMHz1UoP3pUaKIIKy/JfhEs7ANtRt6hhfEKe9dl2kQzDkkKt4pXol+YgdYxL/sVc/nLgQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-html": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-3.0.1.tgz",
"integrity": "sha512-sbuFd+nSjgbrGf5eYwSddFhm1eLLePKWyH6Zn8Zb0OODrBK5e4vGn1/scI/MOH5a2IvNs8W9wp84uMBFJcQZtw==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-html-symbol-entities": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-3.0.0.tgz",
"integrity": "sha512-04K7cPTcbYXmHICfiob4gZA1yaj4hpfM+Nl5WIJ1EAZsSGHdqmGEF28GuCjyQ8ZeKiJAsPt/vXuLBbjxkHqZyQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-java": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-2.0.0.tgz",
"integrity": "sha512-9f5LDATlAiXRGqxLxgqbOLlQxuMW2zcN7tBgxwtN+4u90vM03ZUOR/gKIuDV/y0ZuAiWBIjA73cjk8DJ13Q1eA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-latex": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-2.0.4.tgz",
"integrity": "sha512-uqnfQiDQwHL4QTtXQyJdTx6Ol9WDu4c2jMSsL20BIe1wXGaGuGNSIwHEiJyGv7VEBpZTpqx38I4mpKdAERG+gw==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-lorem-ipsum": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-2.0.0.tgz",
"integrity": "sha512-jKogAKtqvgPMleL6usyj3rZ0m8sVUR6drrD+wMnWSfdx1BmUyTsYiuh/mPEfLAebaYHELWSLQG3rDZRvV9Riqg==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-lua": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-2.0.0.tgz",
"integrity": "sha512-7WUEBEspSKtsq104WdIys1+DLqAxpJPzw74Py1TuE3fI5GvlzeSZkRFP2ya54GB2lCO4C3mq4M8EnitpibVDfw==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-node": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-2.0.1.tgz",
"integrity": "sha512-ztBWzhvI+YaMehICSJ65cohhjQqoztxf9vrS3YckOiVGBFvUMaFVNdX9klQkvrLcS/O4+2PzoGeIEkmf99amLA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-npm": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-2.0.5.tgz",
"integrity": "sha512-KuPL5fKaqyG9ACrrinNt84FhVdh23VRtxDLO8MtGUdStca9tjfjPdmP2YF/5VkEKmpKYkfFKVcBUk9RgVkx5bw==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-php": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-2.0.0.tgz",
"integrity": "sha512-29WgU77eTO985LvMHwPi1pcpfopfCWfTdffDyqya0JIfOSaFUrlYKzGPkE4mRxcz2G3hXsaM0SRvBNdIRwEdUg==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-powershell": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-2.0.0.tgz",
"integrity": "sha512-6uvEhLiGmG3u9TFkM1TYcky6aL9Yk7Sk3KJwoTYBaQJY2KqrprgyQtW6yxIw9oU52VRHlq3KKvSAA9Q26+SIkQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-public-licenses": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-1.0.5.tgz",
"integrity": "sha512-N9bttzzhmCq/BN/TeP43075kj9TeaR8l9v0SPre05BRWsChVrWuMM1UvsT4ADXnsYJNl1xcn+q191S/fIzQhBg==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-python": {
"version": "3.0.6",
"resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.6.tgz",
"integrity": "sha512-tzxJ4sd9ZGhAUKg/WJJpQGDNtoHvM8Wn+iS2+PnQj2/LTHBW4mnaCogsGsBtYu8C4b2+BEQs+tc5808AeEfLug==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-r": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@cspell/dict-r/-/dict-r-1.0.3.tgz",
"integrity": "sha512-u2qeXd4cx/TvTVcmkvA+sK6f4K1uMAMO6QPMSr1pSvqGElPRP1mIBXmuiSuBzLO3LbsJuUEHw5Cp3/bxIB6rNA==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-ruby": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-2.0.1.tgz",
"integrity": "sha512-qGqhYfFeoBOashv/l0Kj5o4ilyvfq0s+t+r32juPOkOnbHz+hzxnJo2tMMg/L/UdjVV7Y8ovg4LDBC/seVrMYQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-rust": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-2.0.0.tgz",
"integrity": "sha512-EWlQivTKXMU3TTcq/Pi6KPKTQADknasQ700UrxRPzxhwQ4sKVZ88GDu6VZJlsbFUz8Vko289KS6wjiox/7WpmQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-scala": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-2.0.0.tgz",
"integrity": "sha512-MUwA2YKpqaQOSR4V1/CVGRNk8Ii5kf6I8Ch+4/BhRZRQXuwWbi21rDRYWPqdQWps7VNzAbbMA+PQDWsD5YY38g==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-software-terms": {
"version": "2.1.8",
"resolved": "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-2.1.8.tgz",
"integrity": "sha512-D9ECefkdbr5B0yLimy7nmEBl3AHPsweMG1wHatlCIT9uFwwqaq5e+ngbYrntEhMa6afkYY+LGOLbZ1L1dfpLVg==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-swift": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@cspell/dict-swift/-/dict-swift-1.0.3.tgz",
"integrity": "sha512-yOBLSaRD0AnkkkndJ8PuB82Evp6lA2xItf2AWsnPfCCgxp5Ojk6uUBC/WQBSkzkCAOGbXyHsu9D97tsOx2c6cw==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-typescript": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-2.0.0.tgz",
"integrity": "sha512-WFBahxsnD2y4Os14tE5Zxh31Ggn4DzGOAu3UoxYl1lLLxaszx4RH7LmAeFuznySboiaBeRBbpfJOjQA796O6VQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@cspell/dict-vue": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@cspell/dict-vue/-/dict-vue-2.0.2.tgz",
"integrity": "sha512-/MB0RS0Gn01s4pgmjy0FvsLfr3RRMrRphEuvTRserNcM8XVtoIVAtrjig/Gg0DPwDrN8Clm0L1j7iQay6S8D0g==",
"dev": true,
"license": "MIT"
},
"node_modules/@docsearch/css": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.1.0.tgz",
"integrity": "sha512-bh5IskwkkodbvC0FzSg1AxMykfDl95hebEKwxNoq4e5QaGzOXSBgW8+jnMFZ7JU4sTBiB04vZWoUSzNrPboLZA==",
"dev": true,
"license": "MIT"
},
"node_modules/@docsearch/js": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@docsearch/js/-/js-3.1.0.tgz",
"integrity": "sha512-5XSK+xbP0hcTIp54MECqxkWLs6kf7Ug4nWdxWNtx8cUpLiFNFnKXDxCb35wnyNpjukmrx7Q9DkO5tFFsmNVxng==",
"dev": true,
"license": "MIT",
"dependencies": {
"@docsearch/react": "3.1.0",
"preact": "^10.0.0"
}
},
"node_modules/@docsearch/react": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.1.0.tgz",
"integrity": "sha512-bjB6ExnZzf++5B7Tfoi6UXgNwoUnNOfZ1NyvnvPhWgCMy5V/biAtLL4o7owmZSYdAKeFSvZ5Lxm0is4su/dBWg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@algolia/autocomplete-core": "1.6.3",
"@docsearch/css": "3.1.0",
"algoliasearch": "^4.0.0"
},
"peerDependencies": {
"@types/react": ">= 16.8.0 < 19.0.0",
"react": ">= 16.8.0 < 19.0.0",
"react-dom": ">= 16.8.0 < 19.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.0.tgz",
"integrity": "sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==",
"dev": true,
"license": "MIT",
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.3.2",
"globals": "^13.15.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@feathersjs/adapter-commons": {
"version": "5.0.0-pre.18",
"resolved": "https://registry.npmjs.org/@feathersjs/adapter-commons/-/adapter-commons-5.0.0-pre.18.tgz",
"integrity": "sha512-YlVpvPngvHIgR5yembL5216MTvRjr3b44Stv6WeFd1rELXHmHf/6J0DwaAJcBbCjrZDyMa/MYoUGnRpqimIl8Q==",
"license": "MIT",
"dependencies": {
"@feathersjs/commons": "^5.0.0-pre.18",
"@feathersjs/errors": "^5.0.0-pre.18",
"@feathersjs/feathers": "^5.0.0-pre.18"
},
"engines": {
"node": ">= 12"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/feathers"
}
},
"node_modules/@feathersjs/adapter-commons/node_modules/@feathersjs/commons": {
"version": "5.0.0-pre.22",
"resolved": "https://registry.npmjs.org/@feathersjs/commons/-/commons-5.0.0-pre.22.tgz",
"integrity": "sha512-o3j5uclFQz8Q8DYoCLDkfWiWdGeJMiuJsMT6NB6mQliivU5RFMQvnqTyHCvxbXp6TtCef6bCCMhvIFtGbM2ZNw==",
"license": "MIT",
"engines": {
"node": ">= 12"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/daffl"
}
},
"node_modules/@feathersjs/adapter-commons/node_modules/@feathersjs/feathers": {
"version": "5.0.0-pre.22",
"resolved": "https://registry.npmjs.org/@feathersjs/feathers/-/feathers-5.0.0-pre.22.tgz",
"integrity": "sha512-VyEl3riPiAzUP1mY1GlaBUuMBUpycqs97Dka/V5vsQ1sck/twgxd76JdL3DLUlHb8uWeWv8XhlqBZD4JSOESPA==",
"license": "MIT",
"dependencies": {
"@feathersjs/commons": "^5.0.0-pre.22",
"@feathersjs/hooks": "^0.7.4",
"events": "^3.3.0"
},
"engines": {
"node": ">= 12"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/daffl"
}
},
"node_modules/@feathersjs/authentication": {
"version": "5.0.0-pre.22",
"resolved": "https://registry.npmjs.org/@feathersjs/authentication/-/authentication-5.0.0-pre.22.tgz",
"integrity": "sha512-QzoFO4wG0MnxJzfpNFpPG0J3L+iECSfgrt3Shm67zCy0/x1+dS6FzT1KJVfasL62QIHFcrCYRJRQBZVr+qkw9A==",
"dev": true,
"license": "MIT",
"dependencies": {
"@feathersjs/commons": "^5.0.0-pre.22",
"@feathersjs/errors": "^5.0.0-pre.22",
"@feathersjs/feathers": "^5.0.0-pre.22",
"@feathersjs/transport-commons": "^5.0.0-pre.22",
"@types/jsonwebtoken": "^8.5.8",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"long-timeout": "^0.1.1",
"uuid": "^8.3.2"
},
"engines": {
"node": ">= 12"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/daffl"
}
},
"node_modules/@feathersjs/authentication-client": {
"version": "5.0.0-pre.18",
"resolved": "https://registry.npmjs.org/@feathersjs/authentication-client/-/authentication-client-5.0.0-pre.18.tgz",
"integrity": "sha512-bxZMF01LMaVNRQoScIK3aO4/p8LRzgzhY1l0NmGUoz8RHUQfavsoFPc33emzJ8bFgxRJSJW70Nwv9iaMnH61Bw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@feathersjs/authentication": "^5.0.0-pre.18",
"@feathersjs/commons": "^5.0.0-pre.18",
"@feathersjs/errors": "^5.0.0-pre.18",
"@feathersjs/feathers": "^5.0.0-pre.18"
},
"engines": {
"node": ">= 12"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/daffl"
}
},
"node_modules/@feathersjs/authentication-client/node_modules/@feathersjs/commons": {
"version": "5.0.0-pre.22",
"resolved": "https://registry.npmjs.org/@feathersjs/commons/-/commons-5.0.0-pre.22.tgz",
"integrity": "sha512-o3j5uclFQz8Q8DYoCLDkfWiWdGeJMiuJsMT6NB6mQliivU5RFMQvnqTyHCvxbXp6TtCef6bCCMhvIFtGbM2ZNw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">= 12"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/daffl"
}
},
"node_modules/@feathersjs/authentication-client/node_modules/@feathersjs/feathers": {
"version": "5.0.0-pre.22",
"resolved": "https://registry.npmjs.org/@feathersjs/feathers/-/feathers-5.0.0-pre.22.tgz",
"integrity": "sha512-VyEl3riPiAzUP1mY1GlaBUuMBUpycqs97Dka/V5vsQ1sck/twgxd76JdL3DLUlHb8uWeWv8XhlqBZD4JSOESPA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@feathersjs/commons": "^5.0.0-pre.22",
"@feathersjs/hooks": "^0.7.4",
"events": "^3.3.0"
},
"engines": {
"node": ">= 12"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/daffl"
}
},
"node_modules/@feathersjs/authentication-jwt": {
"version": "2.0.10",
"resolved": "https://registry.npmjs.org/@feathersjs/authentication-jwt/-/authentication-jwt-2.0.10.tgz",
"integrity": "sha512-4IVBXDa4w17rroWiSM6LpSzUVG9Za1x1t7fioSObYt60PTkY7QunZt77GkdWfTNLNFvV++VVZ5tGFN6kfIKqCA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@feathersjs/errors": "^3.3.6",
"debug": "^4.0.0",
"lodash.merge": "^4.6.0",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"passport-jwt": "^4.0.0"
},
"engines": {
"node": ">= 6"
}
},
"node_modules/@feathersjs/authentication-jwt/node_modules/@feathersjs/errors": {
"version": "3.3.6",
"resolved": "https://registry.npmjs.org/@feathersjs/errors/-/errors-3.3.6.tgz",
"integrity": "sha512-VCohY/AQU13xYyZGl6rfdUgE+2bjaI76a4aEb6reIphHKgb4mnjYlg2PzS1/hcU1qUNi515kY9yQa5HsE7J1dQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"debug": "^4.0.0"
},
"engines": {
"node": ">= 6"
}
},
"node_modules/@feathersjs/authentication/node_modules/@feathersjs/commons": {
"version": "5.0.0-pre.22",
"resolved": "https://registry.npmjs.org/@feathersjs/commons/-/commons-5.0.0-pre.22.tgz",
"integrity": "sha512-o3j5uclFQz8Q8DYoCLDkfWiWdGeJMiuJsMT6NB6mQliivU5RFMQvnqTyHCvxbXp6TtCef6bCCMhvIFtGbM2ZNw==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">= 12"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/daffl"
}
},
"node_modules/@feathersjs/authentication/node_modules/@feathersjs/feathers": {
"version": "5.0.0-pre.22",
"resolved": "https://registry.npmjs.org/@feathersjs/feathers/-/feathers-5.0.0-pre.22.tgz",
"integrity": "sha512-VyEl3riPiAzUP1mY1GlaBUuMBUpycqs97Dka/V5vsQ1sck/twgxd76JdL3DLUlHb8uWeWv8XhlqBZD4JSOESPA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@feathersjs/commons": "^5.0.0-pre.22",
"@feathersjs/hooks": "^0.7.4",
"events": "^3.3.0"
},
"engines": {
"node": ">= 12"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/daffl"
}
},
"node_modules/@feathersjs/commons": {
"version": "5.0.0-pre.18",
"resolved": "https://registry.npmjs.org/@feathersjs/commons/-/commons-5.0.0-pre.18.tgz",
"integrity": "sha512-+W+Vk2nz03XSSla+UPmke0xwmYNtfGazfexiVo49UA8YxDLio8QWs+B5OVgX1V1tD+Men3qlNOmAP0VHesYqTA==",
"license": "MIT",
"engines": {
"node": ">= 12"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/daffl"
}
},
"node_modules/@feathersjs/errors": {