-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lock.json
More file actions
14551 lines (14551 loc) · 548 KB
/
package-lock.json
File metadata and controls
14551 lines (14551 loc) · 548 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "tables-dev",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "tables-dev",
"workspaces": [
"ui",
"tests"
],
"dependencies": {
"update": "^0.7.4"
},
"devDependencies": {
"@holochain-playground/cli": "^0.1.1",
"@holochain/hc-spin": "^0.400.0-dev.0",
"@rollup/plugin-typescript": "^8.0.0",
"@theweave/cli": "0.13.0-gamma.5",
"@tsconfig/svelte": "^2.0.0",
"bestzip": "^2.2.0",
"concurrently": "^6.2.1",
"concurrently-repeat": "^0.0.1",
"cross-env": "^7.0.3",
"json-parse-better-errors": "^1.0.2",
"new-port-cli": "^1.0.0",
"rimraf": "^3.0.2",
"svelte-check": "^2.0.0",
"svelte-preprocess": "^4.10.7",
"tslib": "^2.0.0",
"typescript": "^4.0.0"
},
"engines": {
"npm": ">=7.0.0"
}
},
"node_modules/@alenaksu/json-viewer": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@alenaksu/json-viewer/-/json-viewer-2.0.1.tgz",
"integrity": "sha512-M6rN1bcuSGfar6ND9fFASBkez0UcWOUxMiwm2i9jlPBrpjOHOz0/utMgZhfrsgfyFPZ1H1gzfU8auJkYO1mq/g==",
"dependencies": {
"lit": "^2.3.1"
}
},
"node_modules/@babel/runtime": {
"version": "7.21.5",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz",
"integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==",
"dependencies": {
"regenerator-runtime": "^0.13.11"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@bitgo/blake2b": {
"version": "3.2.4",
"resolved": "https://registry.npmjs.org/@bitgo/blake2b/-/blake2b-3.2.4.tgz",
"integrity": "sha512-46PEgEVPxecNJ/xczggIllSxIkFIvvbVM0OfIDdNJ5qpFHUeBCkNIiGdzC3fYZlsv7bVTdUZOj79GcFBLMYBqA==",
"dependencies": {
"@bitgo/blake2b-wasm": "^3.2.3",
"nanoassert": "^2.0.0"
}
},
"node_modules/@bitgo/blake2b-wasm": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@bitgo/blake2b-wasm/-/blake2b-wasm-3.2.3.tgz",
"integrity": "sha512-NaurBrMaEpjfg7EdUJgW/c6byt27O6q1ZaxB5Ita10MjjYjUu0SyYF4q7JPNxpHF/lMxb0YZakOxigbDBu9Jjw==",
"dependencies": {
"nanoassert": "^1.0.0"
}
},
"node_modules/@bitgo/blake2b-wasm/node_modules/nanoassert": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/nanoassert/-/nanoassert-1.1.0.tgz",
"integrity": "sha512-C40jQ3NzfkP53NsO8kEOFd79p4b9kDXQMwgiY1z8ZwrDZgUyom0AHwGegF4Dm99L+YoYhuaB0ceerUcXmqr1rQ=="
},
"node_modules/@codemirror/autocomplete": {
"version": "6.16.3",
"resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.16.3.tgz",
"integrity": "sha512-Vl/tIeRVVUCRDuOG48lttBasNQu8usGgXQawBXI7WJAiUDSFOfzflmEsZFZo48mAvAaa4FZ/4/yLLxFtdJaKYA==",
"dependencies": {
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.17.0",
"@lezer/common": "^1.0.0"
},
"peerDependencies": {
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@lezer/common": "^1.0.0"
}
},
"node_modules/@codemirror/commands": {
"version": "6.6.0",
"resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-6.6.0.tgz",
"integrity": "sha512-qnY+b7j1UNcTS31Eenuc/5YJB6gQOzkUoNmJQc0rznwqSRpeaWWpjkWy2C/MPTcePpsKJEM26hXrOXl1+nceXg==",
"dependencies": {
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.4.0",
"@codemirror/view": "^6.27.0",
"@lezer/common": "^1.1.0"
}
},
"node_modules/@codemirror/lang-javascript": {
"version": "6.2.2",
"resolved": "https://registry.npmjs.org/@codemirror/lang-javascript/-/lang-javascript-6.2.2.tgz",
"integrity": "sha512-VGQfY+FCc285AhWuwjYxQyUQcYurWlxdKYT4bqwr3Twnd5wP5WSeu52t4tvvuWmljT4EmgEgZCqSieokhtY8hg==",
"dependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/language": "^6.6.0",
"@codemirror/lint": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.17.0",
"@lezer/common": "^1.0.0",
"@lezer/javascript": "^1.0.0"
}
},
"node_modules/@codemirror/language": {
"version": "6.10.2",
"resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.10.2.tgz",
"integrity": "sha512-kgbTYTo0Au6dCSc/TFy7fK3fpJmgHDv1sG1KNQKJXVi+xBTEeBPY/M30YXiU6mMXeH+YIDLsbrT4ZwNRdtF+SA==",
"dependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.23.0",
"@lezer/common": "^1.1.0",
"@lezer/highlight": "^1.0.0",
"@lezer/lr": "^1.0.0",
"style-mod": "^4.0.0"
}
},
"node_modules/@codemirror/lint": {
"version": "6.8.1",
"resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.8.1.tgz",
"integrity": "sha512-IZ0Y7S4/bpaunwggW2jYqwLuHj0QtESf5xcROewY6+lDNwZ/NzvR4t+vpYgg9m7V8UXLPYqG+lu3DF470E5Oxg==",
"dependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"crelt": "^1.0.5"
}
},
"node_modules/@codemirror/search": {
"version": "6.5.6",
"resolved": "https://registry.npmjs.org/@codemirror/search/-/search-6.5.6.tgz",
"integrity": "sha512-rpMgcsh7o0GuCDUXKPvww+muLA1pDJaFrpq/CCHtpQJYz8xopu4D1hPcKRoDD0YlF8gZaqTNIRa4VRBWyhyy7Q==",
"dependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"crelt": "^1.0.5"
}
},
"node_modules/@codemirror/state": {
"version": "6.4.1",
"resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.4.1.tgz",
"integrity": "sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A=="
},
"node_modules/@codemirror/view": {
"version": "6.28.2",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.28.2.tgz",
"integrity": "sha512-A3DmyVfjgPsGIjiJqM/zvODUAPQdQl3ci0ghehYNnbt5x+o76xq+dL5+mMBuysDXnI3kapgOkoeJ0sbtL/3qPw==",
"dependencies": {
"@codemirror/state": "^6.4.0",
"style-mod": "^4.1.0",
"w3c-keyname": "^2.2.4"
}
},
"node_modules/@colors/colors": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
"integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==",
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@cspotcode/source-map-support": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
"integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
"dev": true,
"dependencies": {
"@jridgewell/trace-mapping": "0.3.9"
},
"engines": {
"node": ">=12"
}
},
"node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": {
"version": "0.3.9",
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz",
"integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
"dev": true,
"dependencies": {
"@jridgewell/resolve-uri": "^3.0.3",
"@jridgewell/sourcemap-codec": "^1.4.10"
}
},
"node_modules/@ctrl/tinycolor": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-4.0.2.tgz",
"integrity": "sha512-fKQinXE9pJ83J1n+C3rDl2xNLJwfoYNvXLRy5cYZA9hBJJw2q+sbb/AOSNKmLxnTWyNTmy4994dueSwP4opi5g==",
"engines": {
"node": ">=14"
}
},
"node_modules/@dabh/diagnostics": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz",
"integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==",
"dependencies": {
"colorspace": "1.1.x",
"enabled": "2.0.x",
"kuler": "^2.0.0"
}
},
"node_modules/@electron-toolkit/preload": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@electron-toolkit/preload/-/preload-2.0.0.tgz",
"integrity": "sha512-zpZDzbqJTZQC5d4LRs2EKruKWnqah+T75s+niBYFemYLtiW5TTZcWi3Q8UxHqnwTudDMuWJb233aaS2yjx3Xiw==",
"dev": true,
"peerDependencies": {
"electron": ">=13.0.0"
}
},
"node_modules/@electron-toolkit/utils": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@electron-toolkit/utils/-/utils-2.0.1.tgz",
"integrity": "sha512-3nnjd3D1NIjxdzNrvR5fkJ3kbJNbRkpHppv0/pSbMX6I0DaBzpPXeSfDYuJJKzZrAc3CmGcJa0MU4+AjEOlT4g==",
"dev": true,
"peerDependencies": {
"electron": ">=13.0.0"
}
},
"node_modules/@electron/get": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@electron/get/-/get-2.0.3.tgz",
"integrity": "sha512-Qkzpg2s9GnVV2I2BjRksUi43U5e6+zaQMcjoJy0C+C5oxaKl+fmckGDQFtRpZpZV0NQekuZZ+tGz7EA9TVnQtQ==",
"dev": true,
"dependencies": {
"debug": "^4.1.1",
"env-paths": "^2.2.0",
"fs-extra": "^8.1.0",
"got": "^11.8.5",
"progress": "^2.0.3",
"semver": "^6.2.0",
"sumchecker": "^3.0.1"
},
"engines": {
"node": ">=12"
},
"optionalDependencies": {
"global-agent": "^3.0.0"
}
},
"node_modules/@electron/get/node_modules/semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@esbuild/linux-x64": {
"version": "0.17.18",
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.18.tgz",
"integrity": "sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@floating-ui/core": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.5.0.tgz",
"integrity": "sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==",
"dependencies": {
"@floating-ui/utils": "^0.1.3"
}
},
"node_modules/@floating-ui/dom": {
"version": "1.5.3",
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.5.3.tgz",
"integrity": "sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==",
"dependencies": {
"@floating-ui/core": "^1.4.2",
"@floating-ui/utils": "^0.1.3"
}
},
"node_modules/@floating-ui/utils": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.1.6.tgz",
"integrity": "sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A=="
},
"node_modules/@holo-host/identicon": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/@holo-host/identicon/-/identicon-0.1.0.tgz",
"integrity": "sha512-Dn5pTV/m3XaK1Zvq3liw/vQUt7goM7Y84x2zUyH8cb9CNMs4kPCNHs3kalbJZ/ymzFvwcdiLwwNW8AKk+WWN5A=="
},
"node_modules/@holochain-open-dev/elements": {
"version": "0.400.0-dev.0",
"resolved": "https://registry.npmjs.org/@holochain-open-dev/elements/-/elements-0.400.0-dev.0.tgz",
"integrity": "sha512-qyR15gK12mGJ3vzKiYEXSwcVPHWBbnLESfGA7BXeeVEhEAFJVdBxvu5rlSJGdi8pqMZ9SRkZ3nH1JBvBpuhpBA==",
"dependencies": {
"@holo-host/identicon": "^0.1.0",
"@holochain/client": "^0.18.0-dev.0",
"@lit/localize": "^0.12.0",
"@mdi/js": "^7.1.96",
"@shoelace-style/shoelace": "^2.11.0",
"lit": "^3.0.2",
"prosemirror-commands": "^1.5.2",
"prosemirror-keymap": "^1.2.2",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.31.3"
}
},
"node_modules/@holochain-open-dev/elements/node_modules/@holochain/client": {
"version": "0.18.0-dev.3",
"resolved": "https://registry.npmjs.org/@holochain/client/-/client-0.18.0-dev.3.tgz",
"integrity": "sha512-TlEJKKCoB/10VhZt7izHjOCts99zUv75flAaPr7Czs7fsiXQ5N2Yspjer5KosNsTIy2tSjzh9KRKQynFq58apA==",
"dependencies": {
"@bitgo/blake2b": "^3.2.4",
"@holochain/serialization": "^0.1.0-beta-rc.3",
"@msgpack/msgpack": "^2.8.0",
"emittery": "^1.0.1",
"isomorphic-ws": "^5.0.0",
"js-base64": "^3.7.5",
"libsodium-wrappers": "^0.7.13",
"lodash-es": "^4.17.21",
"ws": "^8.14.2"
},
"engines": {
"node": ">=18.0.0 || >=20.0.0"
}
},
"node_modules/@holochain-open-dev/elements/node_modules/@lit/reactive-element": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-2.0.4.tgz",
"integrity": "sha512-GFn91inaUa2oHLak8awSIigYz0cU0Payr1rcFsrkf5OJ5eSPxElyZfKh0f2p9FsTiZWXQdWGJeXZICEfXXYSXQ==",
"dependencies": {
"@lit-labs/ssr-dom-shim": "^1.2.0"
}
},
"node_modules/@holochain-open-dev/elements/node_modules/lit": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/lit/-/lit-3.1.4.tgz",
"integrity": "sha512-q6qKnKXHy2g1kjBaNfcoLlgbI3+aSOZ9Q4tiGa9bGYXq5RBXxkVTqTIVmP2VWMp29L4GyvCFm8ZQ2o56eUAMyA==",
"dependencies": {
"@lit/reactive-element": "^2.0.4",
"lit-element": "^4.0.4",
"lit-html": "^3.1.2"
}
},
"node_modules/@holochain-open-dev/elements/node_modules/lit-element": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/lit-element/-/lit-element-4.0.6.tgz",
"integrity": "sha512-U4sdJ3CSQip7sLGZ/uJskO5hGiqtlpxndsLr6mt3IQIjheg93UKYeGQjWMRql1s/cXNOaRrCzC2FQwjIwSUqkg==",
"dependencies": {
"@lit-labs/ssr-dom-shim": "^1.2.0",
"@lit/reactive-element": "^2.0.4",
"lit-html": "^3.1.2"
}
},
"node_modules/@holochain-open-dev/elements/node_modules/lit-html": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/lit-html/-/lit-html-3.1.4.tgz",
"integrity": "sha512-yKKO2uVv7zYFHlWMfZmqc+4hkmSbFp8jgjdZY9vvR9jr4J8fH6FUMXhr+ljfELgmjpvlF7Z1SJ5n5/Jeqtc9YA==",
"dependencies": {
"@types/trusted-types": "^2.0.2"
}
},
"node_modules/@holochain-open-dev/profiles": {
"version": "0.400.0-dev.1",
"resolved": "https://registry.npmjs.org/@holochain-open-dev/profiles/-/profiles-0.400.0-dev.1.tgz",
"integrity": "sha512-JMPmAilgHMBMn8R8gPc3eJZno+Hckeh/is1XzHQxZRsITvB5+ow3dQ+vOh3CTyU/fiBaumZVbBwMLkVRtdqSng==",
"dependencies": {
"@holochain-open-dev/elements": "0.400.0-dev.0",
"@holochain-open-dev/stores": "0.400.0-dev.0",
"@holochain-open-dev/utils": "0.400.0-dev.0",
"@holochain/client": "^0.18.0-dev.0",
"@lit/context": "^1.0.1",
"@lit/localize": "^0.12.0",
"@mdi/js": "^7.1.96",
"@shoelace-style/shoelace": "^2.11.0",
"lit": "^3.0.2"
}
},
"node_modules/@holochain-open-dev/profiles/node_modules/@holochain-open-dev/stores": {
"version": "0.400.0-dev.0",
"resolved": "https://registry.npmjs.org/@holochain-open-dev/stores/-/stores-0.400.0-dev.0.tgz",
"integrity": "sha512-yRWDYfBb90lNL3jgtsOfWc+g/oZeDHrIolrfne5vql24usKVlBdzyh3eoY+JsyDnB8x/HUMWnRsC4R94dhSl6Q==",
"dependencies": {
"@alenaksu/json-viewer": "^2.0.1",
"@holochain-open-dev/utils": "^0.400.0-dev.0",
"@holochain/client": "^0.18.0-dev.0",
"@scoped-elements/cytoscape": "^0.2.0",
"@shoelace-style/shoelace": "^2.11.2",
"lit": "^3.0.2",
"lit-svelte-stores": "^0.3.0",
"svelte": "^3.53.1"
}
},
"node_modules/@holochain-open-dev/profiles/node_modules/@holochain/client": {
"version": "0.18.0-dev.3",
"resolved": "https://registry.npmjs.org/@holochain/client/-/client-0.18.0-dev.3.tgz",
"integrity": "sha512-TlEJKKCoB/10VhZt7izHjOCts99zUv75flAaPr7Czs7fsiXQ5N2Yspjer5KosNsTIy2tSjzh9KRKQynFq58apA==",
"dependencies": {
"@bitgo/blake2b": "^3.2.4",
"@holochain/serialization": "^0.1.0-beta-rc.3",
"@msgpack/msgpack": "^2.8.0",
"emittery": "^1.0.1",
"isomorphic-ws": "^5.0.0",
"js-base64": "^3.7.5",
"libsodium-wrappers": "^0.7.13",
"lodash-es": "^4.17.21",
"ws": "^8.14.2"
},
"engines": {
"node": ">=18.0.0 || >=20.0.0"
}
},
"node_modules/@holochain-open-dev/profiles/node_modules/@lit/reactive-element": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-2.0.4.tgz",
"integrity": "sha512-GFn91inaUa2oHLak8awSIigYz0cU0Payr1rcFsrkf5OJ5eSPxElyZfKh0f2p9FsTiZWXQdWGJeXZICEfXXYSXQ==",
"dependencies": {
"@lit-labs/ssr-dom-shim": "^1.2.0"
}
},
"node_modules/@holochain-open-dev/profiles/node_modules/lit": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/lit/-/lit-3.1.4.tgz",
"integrity": "sha512-q6qKnKXHy2g1kjBaNfcoLlgbI3+aSOZ9Q4tiGa9bGYXq5RBXxkVTqTIVmP2VWMp29L4GyvCFm8ZQ2o56eUAMyA==",
"dependencies": {
"@lit/reactive-element": "^2.0.4",
"lit-element": "^4.0.4",
"lit-html": "^3.1.2"
}
},
"node_modules/@holochain-open-dev/profiles/node_modules/lit-element": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/lit-element/-/lit-element-4.0.6.tgz",
"integrity": "sha512-U4sdJ3CSQip7sLGZ/uJskO5hGiqtlpxndsLr6mt3IQIjheg93UKYeGQjWMRql1s/cXNOaRrCzC2FQwjIwSUqkg==",
"dependencies": {
"@lit-labs/ssr-dom-shim": "^1.2.0",
"@lit/reactive-element": "^2.0.4",
"lit-html": "^3.1.2"
}
},
"node_modules/@holochain-open-dev/profiles/node_modules/lit-html": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/lit-html/-/lit-html-3.1.4.tgz",
"integrity": "sha512-yKKO2uVv7zYFHlWMfZmqc+4hkmSbFp8jgjdZY9vvR9jr4J8fH6FUMXhr+ljfELgmjpvlF7Z1SJ5n5/Jeqtc9YA==",
"dependencies": {
"@types/trusted-types": "^2.0.2"
}
},
"node_modules/@holochain-open-dev/stores": {
"version": "0.400.0-dev.3",
"resolved": "https://registry.npmjs.org/@holochain-open-dev/stores/-/stores-0.400.0-dev.3.tgz",
"integrity": "sha512-keo5lLzsz151tCLLHKfbmcEYd7aDpFMDhG9QphvloqETuVAX/MRINrrgY8yEaas2upmTBI+G2avs9VZLXc1mxw==",
"dependencies": {
"@alenaksu/json-viewer": "^2.0.1",
"@holochain-open-dev/utils": "^0.400.0-dev.4",
"@holochain/client": "^0.18.0-dev.13",
"@scoped-elements/cytoscape": "^0.2.0",
"@shoelace-style/shoelace": "^2.11.2",
"lit": "^3.0.2",
"lit-svelte-stores": "^0.3.0",
"svelte": "^3.53.1"
}
},
"node_modules/@holochain-open-dev/stores/node_modules/@holochain-open-dev/utils": {
"version": "0.400.0-dev.4",
"resolved": "https://registry.npmjs.org/@holochain-open-dev/utils/-/utils-0.400.0-dev.4.tgz",
"integrity": "sha512-/SJIrR2uPJqXPHQ18a2fSjs83G94zbluMA34103iMqnN06JXWfSyiZWHrgovgP9MQ2DXDK1D9QahsTHzvmlQwQ==",
"dependencies": {
"@holochain/client": "^0.18.0-dev.13",
"@msgpack/msgpack": "^2.8.0",
"blakejs": "^1.2.1",
"emittery": "^1.0.1",
"lodash-es": "^4.17.21",
"sort-keys": "^5.0.0"
}
},
"node_modules/@holochain-open-dev/stores/node_modules/@holochain/client": {
"version": "0.18.0-rc.0",
"resolved": "https://registry.npmjs.org/@holochain/client/-/client-0.18.0-rc.0.tgz",
"integrity": "sha512-y9dfvrnUL4OeIhW+yHUnsjsBMoWvL1HnvUKGjfoBQDBsqJGpanmysV6ALScNErF5axPVZ30/m0nmQ9NgpFzUGg==",
"dependencies": {
"@bitgo/blake2b": "^3.2.4",
"@holochain/serialization": "^0.1.0-beta-rc.3",
"@msgpack/msgpack": "^2.8.0",
"emittery": "^1.0.1",
"isomorphic-ws": "^5.0.0",
"js-base64": "^3.7.5",
"libsodium-wrappers": "^0.7.13",
"lodash-es": "^4.17.21",
"ws": "^8.14.2"
},
"engines": {
"node": ">=18.0.0 || >=20.0.0"
}
},
"node_modules/@holochain-open-dev/stores/node_modules/@lit/reactive-element": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-2.0.4.tgz",
"integrity": "sha512-GFn91inaUa2oHLak8awSIigYz0cU0Payr1rcFsrkf5OJ5eSPxElyZfKh0f2p9FsTiZWXQdWGJeXZICEfXXYSXQ==",
"dependencies": {
"@lit-labs/ssr-dom-shim": "^1.2.0"
}
},
"node_modules/@holochain-open-dev/stores/node_modules/lit": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/lit/-/lit-3.1.4.tgz",
"integrity": "sha512-q6qKnKXHy2g1kjBaNfcoLlgbI3+aSOZ9Q4tiGa9bGYXq5RBXxkVTqTIVmP2VWMp29L4GyvCFm8ZQ2o56eUAMyA==",
"dependencies": {
"@lit/reactive-element": "^2.0.4",
"lit-element": "^4.0.4",
"lit-html": "^3.1.2"
}
},
"node_modules/@holochain-open-dev/stores/node_modules/lit-element": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/lit-element/-/lit-element-4.0.6.tgz",
"integrity": "sha512-U4sdJ3CSQip7sLGZ/uJskO5hGiqtlpxndsLr6mt3IQIjheg93UKYeGQjWMRql1s/cXNOaRrCzC2FQwjIwSUqkg==",
"dependencies": {
"@lit-labs/ssr-dom-shim": "^1.2.0",
"@lit/reactive-element": "^2.0.4",
"lit-html": "^3.1.2"
}
},
"node_modules/@holochain-open-dev/stores/node_modules/lit-html": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/lit-html/-/lit-html-3.1.4.tgz",
"integrity": "sha512-yKKO2uVv7zYFHlWMfZmqc+4hkmSbFp8jgjdZY9vvR9jr4J8fH6FUMXhr+ljfELgmjpvlF7Z1SJ5n5/Jeqtc9YA==",
"dependencies": {
"@types/trusted-types": "^2.0.2"
}
},
"node_modules/@holochain-open-dev/utils": {
"version": "0.400.0-dev.0",
"resolved": "https://registry.npmjs.org/@holochain-open-dev/utils/-/utils-0.400.0-dev.0.tgz",
"integrity": "sha512-FEgfaYQKCyGe6zDPLzLID6yuroHKjytQyRYoU2eoLR44ftqm0OEQ689snbTxkwjO3VEWyFmxrxEjpnV2rGQYAg==",
"dependencies": {
"@holochain/client": "^0.18.0-dev.0",
"@msgpack/msgpack": "^2.8.0",
"blakejs": "^1.2.1",
"emittery": "^1.0.1",
"lodash-es": "^4.17.21",
"sort-keys": "^5.0.0"
}
},
"node_modules/@holochain-open-dev/utils/node_modules/@holochain/client": {
"version": "0.18.0-dev.3",
"resolved": "https://registry.npmjs.org/@holochain/client/-/client-0.18.0-dev.3.tgz",
"integrity": "sha512-TlEJKKCoB/10VhZt7izHjOCts99zUv75flAaPr7Czs7fsiXQ5N2Yspjer5KosNsTIy2tSjzh9KRKQynFq58apA==",
"dependencies": {
"@bitgo/blake2b": "^3.2.4",
"@holochain/serialization": "^0.1.0-beta-rc.3",
"@msgpack/msgpack": "^2.8.0",
"emittery": "^1.0.1",
"isomorphic-ws": "^5.0.0",
"js-base64": "^3.7.5",
"libsodium-wrappers": "^0.7.13",
"lodash-es": "^4.17.21",
"ws": "^8.14.2"
},
"engines": {
"node": ">=18.0.0 || >=20.0.0"
}
},
"node_modules/@holochain-playground/cli": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/@holochain-playground/cli/-/cli-0.1.1.tgz",
"integrity": "sha512-JbapAe+uBaec52rTePjdlP0mq3zQhJG/hrdbCd+eecZLA3cXWEGgISR5YwLtx6udN+0ghCDH4U6KILjPiwWZMg==",
"dev": true,
"bin": {
"holochain-playground": "dist/app.js"
}
},
"node_modules/@holochain-syn/client": {
"version": "0.400.0-rc.0",
"resolved": "https://registry.npmjs.org/@holochain-syn/client/-/client-0.400.0-rc.0.tgz",
"integrity": "sha512-khFwUl96x97BRzQ9DAKbryfh6kTmcvJedMRYzIZ+tOBUdZegntA45Y04XanlnM8IJ/QUE3tUaNgjeXD+vObwLA==",
"dependencies": {
"@holochain-open-dev/utils": "^0.400.0-dev.4",
"@holochain/client": "^0.18.0-dev.13",
"@msgpack/msgpack": "^2.7.0",
"automerge": "^1.0.1-preview.7"
}
},
"node_modules/@holochain-syn/client/node_modules/@holochain-open-dev/utils": {
"version": "0.400.0-dev.4",
"resolved": "https://registry.npmjs.org/@holochain-open-dev/utils/-/utils-0.400.0-dev.4.tgz",
"integrity": "sha512-/SJIrR2uPJqXPHQ18a2fSjs83G94zbluMA34103iMqnN06JXWfSyiZWHrgovgP9MQ2DXDK1D9QahsTHzvmlQwQ==",
"dependencies": {
"@holochain/client": "^0.18.0-dev.13",
"@msgpack/msgpack": "^2.8.0",
"blakejs": "^1.2.1",
"emittery": "^1.0.1",
"lodash-es": "^4.17.21",
"sort-keys": "^5.0.0"
}
},
"node_modules/@holochain-syn/client/node_modules/@holochain/client": {
"version": "0.18.0-rc.0",
"resolved": "https://registry.npmjs.org/@holochain/client/-/client-0.18.0-rc.0.tgz",
"integrity": "sha512-y9dfvrnUL4OeIhW+yHUnsjsBMoWvL1HnvUKGjfoBQDBsqJGpanmysV6ALScNErF5axPVZ30/m0nmQ9NgpFzUGg==",
"dependencies": {
"@bitgo/blake2b": "^3.2.4",
"@holochain/serialization": "^0.1.0-beta-rc.3",
"@msgpack/msgpack": "^2.8.0",
"emittery": "^1.0.1",
"isomorphic-ws": "^5.0.0",
"js-base64": "^3.7.5",
"libsodium-wrappers": "^0.7.13",
"lodash-es": "^4.17.21",
"ws": "^8.14.2"
},
"engines": {
"node": ">=18.0.0 || >=20.0.0"
}
},
"node_modules/@holochain-syn/core": {
"version": "0.400.0-rc.0",
"resolved": "https://registry.npmjs.org/@holochain-syn/core/-/core-0.400.0-rc.0.tgz",
"integrity": "sha512-9vQ5mn5TWW5XGM9lJyg2mWP5YSV3W+qJMIgjF3Vv9jgmaP5+HUzCnq263Oq8gf22awLFwh7P4vmPqLDPMQsk7g==",
"dependencies": {
"@holochain-open-dev/elements": "^0.400.0-dev.3",
"@holochain-open-dev/profiles": "^0.400.0-dev.4",
"@holochain-open-dev/stores": "^0.400.0-dev.3",
"@holochain-open-dev/utils": "^0.400.0-dev.4",
"@holochain-syn/client": "^0.400.0-rc.0",
"@holochain-syn/store": "^0.400.0-rc.0",
"@holochain/client": "^0.18.0-dev.13",
"@lit/context": "^1.0.0",
"@lit/localize": "^0.12.0",
"@scoped-elements/cytoscape": "^0.2.0",
"@shoelace-style/shoelace": "^2.3.0",
"lit": "^3.0.0"
}
},
"node_modules/@holochain-syn/core/node_modules/@holochain-open-dev/elements": {
"version": "0.400.0-dev.3",
"resolved": "https://registry.npmjs.org/@holochain-open-dev/elements/-/elements-0.400.0-dev.3.tgz",
"integrity": "sha512-dlGBnDxQKmhXElO32ipjkgxdD6nmfPR2edLYDHzGWdP4uetNWTrbqSjWfw+dqDMmGG1nQkmIkTeBAFBstVgWoQ==",
"dependencies": {
"@holo-host/identicon": "^0.1.0",
"@holochain/client": "^0.18.0-dev.13",
"@lit/localize": "^0.12.0",
"@mdi/js": "^7.1.96",
"@shoelace-style/shoelace": "^2.11.0",
"lit": "^3.0.2",
"prosemirror-commands": "^1.5.2",
"prosemirror-keymap": "^1.2.2",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.31.3"
}
},
"node_modules/@holochain-syn/core/node_modules/@holochain-open-dev/profiles": {
"version": "0.400.0-dev.4",
"resolved": "https://registry.npmjs.org/@holochain-open-dev/profiles/-/profiles-0.400.0-dev.4.tgz",
"integrity": "sha512-fwYpbPmdxbPv9DlnXXmhk/BGka6j/ovPGj4EkN5Uv3ao3BNHHIhBm39dRmlJVC8JXOJCPYeIkeEOM6/92A61aw==",
"dependencies": {
"@holochain-open-dev/elements": "0.400.0-dev.3",
"@holochain-open-dev/stores": "0.400.0-dev.3",
"@holochain-open-dev/utils": "0.400.0-dev.4",
"@holochain/client": "^0.18.0-dev.13",
"@lit/context": "^1.0.1",
"@lit/localize": "^0.12.0",
"@mdi/js": "^7.1.96",
"@shoelace-style/shoelace": "^2.11.0",
"lit": "^3.0.2"
}
},
"node_modules/@holochain-syn/core/node_modules/@holochain-open-dev/utils": {
"version": "0.400.0-dev.4",
"resolved": "https://registry.npmjs.org/@holochain-open-dev/utils/-/utils-0.400.0-dev.4.tgz",
"integrity": "sha512-/SJIrR2uPJqXPHQ18a2fSjs83G94zbluMA34103iMqnN06JXWfSyiZWHrgovgP9MQ2DXDK1D9QahsTHzvmlQwQ==",
"dependencies": {
"@holochain/client": "^0.18.0-dev.13",
"@msgpack/msgpack": "^2.8.0",
"blakejs": "^1.2.1",
"emittery": "^1.0.1",
"lodash-es": "^4.17.21",
"sort-keys": "^5.0.0"
}
},
"node_modules/@holochain-syn/core/node_modules/@holochain/client": {
"version": "0.18.0-rc.0",
"resolved": "https://registry.npmjs.org/@holochain/client/-/client-0.18.0-rc.0.tgz",
"integrity": "sha512-y9dfvrnUL4OeIhW+yHUnsjsBMoWvL1HnvUKGjfoBQDBsqJGpanmysV6ALScNErF5axPVZ30/m0nmQ9NgpFzUGg==",
"dependencies": {
"@bitgo/blake2b": "^3.2.4",
"@holochain/serialization": "^0.1.0-beta-rc.3",
"@msgpack/msgpack": "^2.8.0",
"emittery": "^1.0.1",
"isomorphic-ws": "^5.0.0",
"js-base64": "^3.7.5",
"libsodium-wrappers": "^0.7.13",
"lodash-es": "^4.17.21",
"ws": "^8.14.2"
},
"engines": {
"node": ">=18.0.0 || >=20.0.0"
}
},
"node_modules/@holochain-syn/core/node_modules/@lit/reactive-element": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-2.0.4.tgz",
"integrity": "sha512-GFn91inaUa2oHLak8awSIigYz0cU0Payr1rcFsrkf5OJ5eSPxElyZfKh0f2p9FsTiZWXQdWGJeXZICEfXXYSXQ==",
"dependencies": {
"@lit-labs/ssr-dom-shim": "^1.2.0"
}
},
"node_modules/@holochain-syn/core/node_modules/lit": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/lit/-/lit-3.2.1.tgz",
"integrity": "sha512-1BBa1E/z0O9ye5fZprPtdqnc0BFzxIxTTOO/tQFmyC/hj1O3jL4TfmLBw0WEwjAokdLwpclkvGgDJwTIh0/22w==",
"dependencies": {
"@lit/reactive-element": "^2.0.4",
"lit-element": "^4.1.0",
"lit-html": "^3.2.0"
}
},
"node_modules/@holochain-syn/core/node_modules/lit-element": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/lit-element/-/lit-element-4.1.1.tgz",
"integrity": "sha512-HO9Tkkh34QkTeUmEdNYhMT8hzLid7YlMlATSi1q4q17HE5d9mrrEHJ/o8O2D0cMi182zK1F3v7x0PWFjrhXFew==",
"dependencies": {
"@lit-labs/ssr-dom-shim": "^1.2.0",
"@lit/reactive-element": "^2.0.4",
"lit-html": "^3.2.0"
}
},
"node_modules/@holochain-syn/core/node_modules/lit-html": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/lit-html/-/lit-html-3.2.1.tgz",
"integrity": "sha512-qI/3lziaPMSKsrwlxH/xMgikhQ0EGOX2ICU73Bi/YHFvz2j/yMCIrw4+puF2IpQ4+upd3EWbvnHM9+PnJn48YA==",
"dependencies": {
"@types/trusted-types": "^2.0.2"
}
},
"node_modules/@holochain-syn/store": {
"version": "0.400.0-rc.0",
"resolved": "https://registry.npmjs.org/@holochain-syn/store/-/store-0.400.0-rc.0.tgz",
"integrity": "sha512-7lIZMJtiXhpE160Ph3nTBsdjMAqkn8V6KU10zbov7KhvQlektwD0Df7WR1JVM+N2N2poR8j7+omzGqBRANkBQQ==",
"dependencies": {
"@holochain-open-dev/stores": "^0.400.0-dev.3",
"@holochain-open-dev/utils": "^0.400.0-dev.4",
"@holochain-syn/client": "^0.400.0-rc.0",
"@holochain/client": "^0.18.0-dev.13",
"@msgpack/msgpack": "^2.7.2",
"automerge": "^1.0.1-preview.7",
"lodash-es": "^4.17.21"
}
},
"node_modules/@holochain-syn/store/node_modules/@holochain-open-dev/utils": {
"version": "0.400.0-dev.4",
"resolved": "https://registry.npmjs.org/@holochain-open-dev/utils/-/utils-0.400.0-dev.4.tgz",
"integrity": "sha512-/SJIrR2uPJqXPHQ18a2fSjs83G94zbluMA34103iMqnN06JXWfSyiZWHrgovgP9MQ2DXDK1D9QahsTHzvmlQwQ==",
"dependencies": {
"@holochain/client": "^0.18.0-dev.13",
"@msgpack/msgpack": "^2.8.0",
"blakejs": "^1.2.1",
"emittery": "^1.0.1",
"lodash-es": "^4.17.21",
"sort-keys": "^5.0.0"
}
},
"node_modules/@holochain-syn/store/node_modules/@holochain/client": {
"version": "0.18.0-rc.0",
"resolved": "https://registry.npmjs.org/@holochain/client/-/client-0.18.0-rc.0.tgz",
"integrity": "sha512-y9dfvrnUL4OeIhW+yHUnsjsBMoWvL1HnvUKGjfoBQDBsqJGpanmysV6ALScNErF5axPVZ30/m0nmQ9NgpFzUGg==",
"dependencies": {
"@bitgo/blake2b": "^3.2.4",
"@holochain/serialization": "^0.1.0-beta-rc.3",
"@msgpack/msgpack": "^2.8.0",
"emittery": "^1.0.1",
"isomorphic-ws": "^5.0.0",
"js-base64": "^3.7.5",
"libsodium-wrappers": "^0.7.13",
"lodash-es": "^4.17.21",
"ws": "^8.14.2"
},
"engines": {
"node": ">=18.0.0 || >=20.0.0"
}
},
"node_modules/@holochain/client": {
"version": "0.12.5",
"resolved": "https://registry.npmjs.org/@holochain/client/-/client-0.12.5.tgz",
"integrity": "sha512-9Q1G8sKEGsqnCl067CaRbzwPZZ5zeDCJdvQ8TJpb+psP2kLJBbHZ2qulMXAlNUz7Pg0l4B1Eh/BFJByJHRLlow==",
"dependencies": {
"@holochain/serialization": "^0.1.0-beta-rc.3",
"@msgpack/msgpack": "^2.7.2",
"@tauri-apps/api": "^1.2.0",
"emittery": "^1.0.1",
"isomorphic-ws": "^5.0.0",
"js-base64": "^3.7.3",
"lodash-es": "^4.17.21",
"tweetnacl": "^1.0.3"
},
"engines": {
"node": "^14.13.1 || >=16.0.0 || >=18.0.0"
}
},
"node_modules/@holochain/hc-spin": {
"version": "0.400.0-dev.2",
"resolved": "https://registry.npmjs.org/@holochain/hc-spin/-/hc-spin-0.400.0-dev.2.tgz",
"integrity": "sha512-CaJCjvWSaQnEAWf6/qeMSQkIpybJ6CEYDd9VkNYIWrYPhNd2qmUDbZvRl0Uakr8D+S3l8oh96CqSLMRqnwPzfA==",
"dev": true,
"dependencies": {
"@electron-toolkit/preload": "^3.0.0",
"@electron-toolkit/utils": "^3.0.0",
"@holochain/client": "0.18.0-dev.0",
"@holochain/hc-spin-rust-utils": "^0.300.1",
"@msgpack/msgpack": "^2.8.0",
"bufferutil": "4.0.8",
"commander": "11.1.0",
"electron": "^29.3.1",
"electron-context-menu": "3.6.1",
"get-port": "7.0.0",
"nanoid": "5.0.4",
"split": "1.0.1"
},
"bin": {
"hc-spin": "dist/cli.js"
}
},
"node_modules/@holochain/hc-spin-rust-utils": {
"version": "0.300.1",
"resolved": "https://registry.npmjs.org/@holochain/hc-spin-rust-utils/-/hc-spin-rust-utils-0.300.1.tgz",
"integrity": "sha512-vMC6cgqJ8gOT7dGunTyYd6frqax+XQO9v4ZB5YL6amws9xu9lL6OqG1igNJfGimAbqCaQTd1bq8Ctr+HF8AYyg==",
"dev": true,
"engines": {
"node": ">= 10"
},
"optionalDependencies": {
"@holochain/hc-spin-rust-utils-darwin-arm64": "0.300.1",
"@holochain/hc-spin-rust-utils-darwin-x64": "0.300.1",
"@holochain/hc-spin-rust-utils-linux-x64-gnu": "0.300.1",
"@holochain/hc-spin-rust-utils-win32-x64-msvc": "0.300.1"
}
},
"node_modules/@holochain/hc-spin-rust-utils-darwin-arm64": {
"version": "0.300.1",
"resolved": "https://registry.npmjs.org/@holochain/hc-spin-rust-utils-darwin-arm64/-/hc-spin-rust-utils-darwin-arm64-0.300.1.tgz",
"integrity": "sha512-IOt+hTVRByaqpzuZ+pN7tTAqNPXsPxE6oc+Hqjo5D4aWP3oeD2b6bEEDRfBicMuUTp7spIqKgT/4Dj0pQtLvyw==",
"cpu": [
"arm64"
],
"dev": true,
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@holochain/hc-spin-rust-utils-darwin-x64": {
"version": "0.300.1",
"resolved": "https://registry.npmjs.org/@holochain/hc-spin-rust-utils-darwin-x64/-/hc-spin-rust-utils-darwin-x64-0.300.1.tgz",
"integrity": "sha512-ffxAB9o5XhvwcXi1F6MsURoxhxJbo3HvlBpD0F2VNfyv/zCd15gb8HvcskhcvQFKlCEHigRrilOxHP5Aks8I3w==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@holochain/hc-spin-rust-utils-linux-x64-gnu": {
"version": "0.300.1",
"resolved": "https://registry.npmjs.org/@holochain/hc-spin-rust-utils-linux-x64-gnu/-/hc-spin-rust-utils-linux-x64-gnu-0.300.1.tgz",
"integrity": "sha512-SKUJdvKIRkqixgaChnkLvBNWgZgFGLI5tNeV/8WMdxCKqD2kLJzUFSIafl1arck9964iSfsCRMG8/5fpfE+sZg==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@holochain/hc-spin-rust-utils-win32-x64-msvc": {
"version": "0.300.1",
"resolved": "https://registry.npmjs.org/@holochain/hc-spin-rust-utils-win32-x64-msvc/-/hc-spin-rust-utils-win32-x64-msvc-0.300.1.tgz",
"integrity": "sha512-S+PcygFnkVbR1/5FF66P7gBju3+PfOd1BLgfDpF6kghSJfb3qSN1h93vPujxeoQcs1qtT3DqMarG2BmyCe9RPA==",
"cpu": [
"x64"
],
"dev": true,
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@holochain/hc-spin/node_modules/@electron-toolkit/preload": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@electron-toolkit/preload/-/preload-3.0.1.tgz",
"integrity": "sha512-EzoQmpK8jqqU8YnM5jRe0GJjGVJPke2KtANqz8QtN2JPT96ViOvProBdK5C6riCm0j1T8jjAGVQCZLQy9OVoIA==",
"dev": true,
"peerDependencies": {
"electron": ">=13.0.0"
}
},
"node_modules/@holochain/hc-spin/node_modules/@electron-toolkit/utils": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@electron-toolkit/utils/-/utils-3.0.0.tgz",
"integrity": "sha512-GaXHDhiT7KCvMJjXdp/QqpYinq69T/Pdl49Z1XLf8mKGf63dnsODMWyrmIjEQ0z/vG7dO8qF3fvmI6Eb2lUNZA==",
"dev": true,
"peerDependencies": {
"electron": ">=13.0.0"
}
},
"node_modules/@holochain/hc-spin/node_modules/@holochain/client": {
"version": "0.18.0-dev.0",
"resolved": "https://registry.npmjs.org/@holochain/client/-/client-0.18.0-dev.0.tgz",
"integrity": "sha512-xQ4J5rG+t1aJrtzZK8BsJYLsYHgG4zoUvsmoUuiKZcvVRlxPldX+p6rWYWz0JuDxlTE5hjmJmBTPWXd+WVHGNw==",
"dev": true,
"dependencies": {
"@bitgo/blake2b": "^3.2.4",
"@holochain/serialization": "^0.1.0-beta-rc.3",
"@msgpack/msgpack": "^2.8.0",
"emittery": "^1.0.1",
"isomorphic-ws": "^5.0.0",
"js-base64": "^3.7.5",
"libsodium-wrappers": "^0.7.13",
"lodash-es": "^4.17.21",
"ws": "^8.14.2"
},
"engines": {
"node": ">=18.0.0 || >=20.0.0"
}
},
"node_modules/@holochain/hc-spin/node_modules/get-port": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/get-port/-/get-port-7.0.0.tgz",
"integrity": "sha512-mDHFgApoQd+azgMdwylJrv2DX47ywGq1i5VFJE7fZ0dttNq3iQMfsU4IvEgBHojA3KqEudyu7Vq+oN8kNaNkWw==",
"dev": true,
"engines": {
"node": ">=16"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@holochain/hc-spin/node_modules/nanoid": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.0.4.tgz",
"integrity": "sha512-vAjmBf13gsmhXSgBrtIclinISzFFy22WwCYoyilZlsrRXNIHSwgFQ1bEdjRwMT3aoadeIF6HMuDRlOxzfXV8ig==",
"dev": true,
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"bin": {
"nanoid": "bin/nanoid.js"
},
"engines": {
"node": "^18 || >=20"
}
},
"node_modules/@holochain/serialization": {
"version": "0.1.0-beta-rc.3",
"resolved": "https://registry.npmjs.org/@holochain/serialization/-/serialization-0.1.0-beta-rc.3.tgz",
"integrity": "sha512-DJx4V2KXHVLciyOGjOYKTM/JLBpBEZ3RsPIRCgf7qmwhQdxXvhi2p+oFFRD51yUT5uC1/MzIVeJCl/R60PwFbw=="
},
"node_modules/@holochain/tryorama": {
"version": "0.11.2",
"resolved": "https://registry.npmjs.org/@holochain/tryorama/-/tryorama-0.11.2.tgz",
"integrity": "sha512-RCi7QtGejpzfGIx1EKyTX+QnkooGaUAY0TiFHDc5uamCvNNX1Ya6Esgvyrt2zpO5YBUUrSbdbB1gBB3a8bwr7A==",
"dependencies": {
"@holochain/client": "^0.12.0",
"get-port": "^6.1.2",
"lodash": "^4.17.21",
"uuid": "^8.3.2",
"winston": "^3.8.2",
"ws": "^8.11.0"