forked from fantasycalendar/FoundryVTT-ItemPiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
11359 lines (11359 loc) · 444 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": "essential-svelte-esm",
"version": "0.0.5",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "essential-svelte-esm",
"version": "0.0.5",
"license": "MIT",
"dependencies": {
"@typhonjs-fvtt/runtime": "^0.0.20",
"@typhonjs-fvtt/svelte-standard": "^0.0.16",
"svelte": "^3.52.0"
},
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "^9.238.1",
"@typhonjs-config/eslint-config": "^0.3.0",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"eslint": "^8",
"svelte-dnd-action": "^0.9.18",
"svelte-preprocess": "^4.10.0",
"vite": "^3"
}
},
"node_modules/@csstools/postcss-cascade-layers": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz",
"integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==",
"dependencies": {
"@csstools/selector-specificity": "^2.0.2",
"postcss-selector-parser": "^6.0.10"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-color-function": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz",
"integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==",
"dependencies": {
"@csstools/postcss-progressive-custom-properties": "^1.1.0",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-font-format-keywords": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz",
"integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-hwb-function": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz",
"integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-ic-unit": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz",
"integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==",
"dependencies": {
"@csstools/postcss-progressive-custom-properties": "^1.1.0",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-is-pseudo-class": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz",
"integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==",
"dependencies": {
"@csstools/selector-specificity": "^2.0.0",
"postcss-selector-parser": "^6.0.10"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-nested-calc": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz",
"integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-normalize-display-values": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz",
"integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-oklab-function": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz",
"integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==",
"dependencies": {
"@csstools/postcss-progressive-custom-properties": "^1.1.0",
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-progressive-custom-properties": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz",
"integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"peerDependencies": {
"postcss": "^8.3"
}
},
"node_modules/@csstools/postcss-stepped-value-functions": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz",
"integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-text-decoration-shorthand": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz",
"integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-trigonometric-functions": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz",
"integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"engines": {
"node": "^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/postcss-unset-value": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz",
"integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==",
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2"
}
},
"node_modules/@csstools/selector-specificity": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.0.2.tgz",
"integrity": "sha512-IkpVW/ehM1hWKln4fCA3NzJU8KwD+kIOvPZA4cqxoJHtE21CCzjyp+Kxbu0i5I4tBNOlXPL9mjwnWlL0VEG4Fg==",
"engines": {
"node": "^12 || ^14 || >=16"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"peerDependencies": {
"postcss": "^8.2",
"postcss-selector-parser": "^6.0.10"
}
},
"node_modules/@es-joy/jsdoccomment": {
"version": "0.36.1",
"resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.36.1.tgz",
"integrity": "sha512-922xqFsTpHs6D0BUiG4toiyPOMc8/jafnWKxz1KWgS4XzKPy2qXf1Pe6UFuNSCQqt6tOuhAWXBNuuyUhJmw9Vg==",
"dev": true,
"dependencies": {
"comment-parser": "1.3.1",
"esquery": "^1.4.0",
"jsdoc-type-pratt-parser": "~3.1.0"
},
"engines": {
"node": "^14 || ^16 || ^17 || ^18 || ^19"
}
},
"node_modules/@esbuild/android-arm": {
"version": "0.15.18",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.15.18.tgz",
"integrity": "sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==",
"cpu": [
"arm"
],
"dev": true,
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-loong64": {
"version": "0.15.18",
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.18.tgz",
"integrity": "sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==",
"cpu": [
"loong64"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@eslint/eslintrc": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.0.tgz",
"integrity": "sha512-7yfvXy6MWLgWSFsLhz5yH3iQ52St8cdUY6FoGieKkRDVxuxmrNuUetIuu6cmjNWwniUHiWXjxCr5tTXDrbYS5A==",
"dev": true,
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.4.0",
"globals": "^13.19.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"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.11.8",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz",
"integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==",
"dev": true,
"dependencies": {
"@humanwhocodes/object-schema": "^1.2.1",
"debug": "^4.1.1",
"minimatch": "^3.0.5"
},
"engines": {
"node": ">=10.10.0"
}
},
"node_modules/@humanwhocodes/module-importer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
"dev": true,
"engines": {
"node": ">=12.22"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@humanwhocodes/object-schema": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
"integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
"dev": true
},
"node_modules/@league-of-foundry-developers/foundry-vtt-types": {
"version": "9.280.0",
"resolved": "https://registry.npmjs.org/@league-of-foundry-developers/foundry-vtt-types/-/foundry-vtt-types-9.280.0.tgz",
"integrity": "sha512-Dv8/+kgAnI2F5snSWcnMnZsgO/87AFyBruflluZkWDbP7Pm5qi32GlNYCDEg7HMKybzyKmgLV2qXMmYPHtCT7w==",
"dev": true,
"dependencies": {
"@pixi/graphics-smooth": "0.0.22",
"@types/jquery": "~3.5.9",
"@types/simple-peer": "~9.11.1",
"handlebars": "4.7.7",
"pixi-particles": "4.3.1",
"pixi.js": "5.3.11",
"socket.io-client": "4.3.2",
"tinymce": "5.10.1"
}
},
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dev": true,
"dependencies": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.stat": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
"dev": true,
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.walk": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"dev": true,
"dependencies": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@pixi/accessibility": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/accessibility/-/accessibility-5.3.11.tgz",
"integrity": "sha512-/oSizd8/g6KUCeAlknMLJ9CRxBt+vWs6e2DrOctMoRupEHcmhICCjIyAp5GF6RZy9T9gNHDOU5p7vo7qEyVxgQ==",
"dev": true,
"dependencies": {
"@pixi/core": "5.3.11",
"@pixi/display": "5.3.11",
"@pixi/utils": "5.3.11"
}
},
"node_modules/@pixi/accessibility/node_modules/@pixi/constants": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/constants/-/constants-5.3.11.tgz",
"integrity": "sha512-KwutCRu8dRYn3956ygPJlvglHjJM99OS2Qhp4QYG8a4BsPcwfpInsHUtGHngtsTZbnx32pxCd3pg9nPiV8EuVA==",
"dev": true
},
"node_modules/@pixi/accessibility/node_modules/@pixi/core": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/core/-/core-5.3.11.tgz",
"integrity": "sha512-U71OiC3rNt45/h8kaLGAQL4XsNh/ISoZtxVQNbtKTXlgjEAy1Q01Ht80yl0UJdiVxYQFlanCS/IG4++OkygioA==",
"dev": true,
"dependencies": {
"@pixi/constants": "5.3.11",
"@pixi/math": "5.3.11",
"@pixi/runner": "5.3.11",
"@pixi/settings": "5.3.11",
"@pixi/ticker": "5.3.11",
"@pixi/utils": "5.3.11"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/pixijs"
}
},
"node_modules/@pixi/accessibility/node_modules/@pixi/display": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/display/-/display-5.3.11.tgz",
"integrity": "sha512-rxUyB+RMJ7esEa11HdvzsularDGkYlRqpUn1ju9ZsRuB/Qo9JiVolywvWGSWxN/WnDGfrU2GjDpq9id10nwiag==",
"dev": true,
"dependencies": {
"@pixi/math": "5.3.11",
"@pixi/settings": "5.3.11",
"@pixi/utils": "5.3.11"
}
},
"node_modules/@pixi/accessibility/node_modules/@pixi/math": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/math/-/math-5.3.11.tgz",
"integrity": "sha512-GAupgFWVuOKxh8A322x8IctNgKi0/pLTJAXxmsLxcUw5PIQGgDw894HvzUriI+C0fsa9cEZHUbOCfyBKPQDLzw==",
"dev": true
},
"node_modules/@pixi/accessibility/node_modules/@pixi/runner": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/runner/-/runner-5.3.11.tgz",
"integrity": "sha512-Mtb0rnSG+6KOIbr/48AtrILr8PZQepYwqYixVEXM6UHl+7+Z5NIx9fOByiicdjEKJvHIAYveu8yp2/L1vkF+qw==",
"dev": true
},
"node_modules/@pixi/accessibility/node_modules/@pixi/settings": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/settings/-/settings-5.3.11.tgz",
"integrity": "sha512-ny/rjSmP+64WqxwmoY17KsFplxpuWbiMQ5SNAgkpi36z6k+utIGT05nIIhyMx3AAGSY+6dRbKmLeKyqCj8q4zw==",
"dev": true,
"dependencies": {
"ismobilejs": "^1.1.0"
}
},
"node_modules/@pixi/accessibility/node_modules/@pixi/ticker": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/ticker/-/ticker-5.3.11.tgz",
"integrity": "sha512-J1CChbSo1SQib1zL5f+FcFJZ6wN7LnWpztJVpKKYy3ZM/v4HSh48UnrGDKn5SLwSq4K7BxvZduwMQ8m4Paz1gQ==",
"dev": true,
"dependencies": {
"@pixi/settings": "5.3.11"
}
},
"node_modules/@pixi/accessibility/node_modules/@pixi/utils": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/utils/-/utils-5.3.11.tgz",
"integrity": "sha512-25ZSCTrfV8da28IzvLnTK0BGWB4dHpq5P9IEgFymJvVLK7sAyT+RPz18ewRbBHgALHsszDpfC+qrHp3i+VZP0Q==",
"dev": true,
"dependencies": {
"@pixi/constants": "5.3.11",
"@pixi/settings": "5.3.11",
"earcut": "^2.1.5",
"eventemitter3": "^3.1.0",
"url": "^0.11.0"
}
},
"node_modules/@pixi/app": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/app/-/app-5.3.11.tgz",
"integrity": "sha512-ZWrOjGvVl+lK5OJQT3OqSnSRtU2XgQSe/ULg2uGsSWUqMkJews33JIGOjvk4tIsjm4ekSKiPZRMdYFHzPfgEJg==",
"dev": true,
"dependencies": {
"@pixi/core": "5.3.11",
"@pixi/display": "5.3.11"
}
},
"node_modules/@pixi/app/node_modules/@pixi/constants": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/constants/-/constants-5.3.11.tgz",
"integrity": "sha512-KwutCRu8dRYn3956ygPJlvglHjJM99OS2Qhp4QYG8a4BsPcwfpInsHUtGHngtsTZbnx32pxCd3pg9nPiV8EuVA==",
"dev": true
},
"node_modules/@pixi/app/node_modules/@pixi/core": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/core/-/core-5.3.11.tgz",
"integrity": "sha512-U71OiC3rNt45/h8kaLGAQL4XsNh/ISoZtxVQNbtKTXlgjEAy1Q01Ht80yl0UJdiVxYQFlanCS/IG4++OkygioA==",
"dev": true,
"dependencies": {
"@pixi/constants": "5.3.11",
"@pixi/math": "5.3.11",
"@pixi/runner": "5.3.11",
"@pixi/settings": "5.3.11",
"@pixi/ticker": "5.3.11",
"@pixi/utils": "5.3.11"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/pixijs"
}
},
"node_modules/@pixi/app/node_modules/@pixi/display": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/display/-/display-5.3.11.tgz",
"integrity": "sha512-rxUyB+RMJ7esEa11HdvzsularDGkYlRqpUn1ju9ZsRuB/Qo9JiVolywvWGSWxN/WnDGfrU2GjDpq9id10nwiag==",
"dev": true,
"dependencies": {
"@pixi/math": "5.3.11",
"@pixi/settings": "5.3.11",
"@pixi/utils": "5.3.11"
}
},
"node_modules/@pixi/app/node_modules/@pixi/math": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/math/-/math-5.3.11.tgz",
"integrity": "sha512-GAupgFWVuOKxh8A322x8IctNgKi0/pLTJAXxmsLxcUw5PIQGgDw894HvzUriI+C0fsa9cEZHUbOCfyBKPQDLzw==",
"dev": true
},
"node_modules/@pixi/app/node_modules/@pixi/runner": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/runner/-/runner-5.3.11.tgz",
"integrity": "sha512-Mtb0rnSG+6KOIbr/48AtrILr8PZQepYwqYixVEXM6UHl+7+Z5NIx9fOByiicdjEKJvHIAYveu8yp2/L1vkF+qw==",
"dev": true
},
"node_modules/@pixi/app/node_modules/@pixi/settings": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/settings/-/settings-5.3.11.tgz",
"integrity": "sha512-ny/rjSmP+64WqxwmoY17KsFplxpuWbiMQ5SNAgkpi36z6k+utIGT05nIIhyMx3AAGSY+6dRbKmLeKyqCj8q4zw==",
"dev": true,
"dependencies": {
"ismobilejs": "^1.1.0"
}
},
"node_modules/@pixi/app/node_modules/@pixi/ticker": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/ticker/-/ticker-5.3.11.tgz",
"integrity": "sha512-J1CChbSo1SQib1zL5f+FcFJZ6wN7LnWpztJVpKKYy3ZM/v4HSh48UnrGDKn5SLwSq4K7BxvZduwMQ8m4Paz1gQ==",
"dev": true,
"dependencies": {
"@pixi/settings": "5.3.11"
}
},
"node_modules/@pixi/app/node_modules/@pixi/utils": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/utils/-/utils-5.3.11.tgz",
"integrity": "sha512-25ZSCTrfV8da28IzvLnTK0BGWB4dHpq5P9IEgFymJvVLK7sAyT+RPz18ewRbBHgALHsszDpfC+qrHp3i+VZP0Q==",
"dev": true,
"dependencies": {
"@pixi/constants": "5.3.11",
"@pixi/settings": "5.3.11",
"earcut": "^2.1.5",
"eventemitter3": "^3.1.0",
"url": "^0.11.0"
}
},
"node_modules/@pixi/extract": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/extract/-/extract-5.3.11.tgz",
"integrity": "sha512-YeBrpIO3E5HUgcdKEldCUqwwDNHm5OBe98YFcdLr5Z0+dQaHnxp9Dm4n75/NojoGb5guYdrV00x+gU2UPHsVdw==",
"dev": true,
"dependencies": {
"@pixi/core": "5.3.11",
"@pixi/math": "5.3.11",
"@pixi/utils": "5.3.11"
}
},
"node_modules/@pixi/extract/node_modules/@pixi/constants": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/constants/-/constants-5.3.11.tgz",
"integrity": "sha512-KwutCRu8dRYn3956ygPJlvglHjJM99OS2Qhp4QYG8a4BsPcwfpInsHUtGHngtsTZbnx32pxCd3pg9nPiV8EuVA==",
"dev": true
},
"node_modules/@pixi/extract/node_modules/@pixi/core": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/core/-/core-5.3.11.tgz",
"integrity": "sha512-U71OiC3rNt45/h8kaLGAQL4XsNh/ISoZtxVQNbtKTXlgjEAy1Q01Ht80yl0UJdiVxYQFlanCS/IG4++OkygioA==",
"dev": true,
"dependencies": {
"@pixi/constants": "5.3.11",
"@pixi/math": "5.3.11",
"@pixi/runner": "5.3.11",
"@pixi/settings": "5.3.11",
"@pixi/ticker": "5.3.11",
"@pixi/utils": "5.3.11"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/pixijs"
}
},
"node_modules/@pixi/extract/node_modules/@pixi/math": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/math/-/math-5.3.11.tgz",
"integrity": "sha512-GAupgFWVuOKxh8A322x8IctNgKi0/pLTJAXxmsLxcUw5PIQGgDw894HvzUriI+C0fsa9cEZHUbOCfyBKPQDLzw==",
"dev": true
},
"node_modules/@pixi/extract/node_modules/@pixi/runner": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/runner/-/runner-5.3.11.tgz",
"integrity": "sha512-Mtb0rnSG+6KOIbr/48AtrILr8PZQepYwqYixVEXM6UHl+7+Z5NIx9fOByiicdjEKJvHIAYveu8yp2/L1vkF+qw==",
"dev": true
},
"node_modules/@pixi/extract/node_modules/@pixi/settings": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/settings/-/settings-5.3.11.tgz",
"integrity": "sha512-ny/rjSmP+64WqxwmoY17KsFplxpuWbiMQ5SNAgkpi36z6k+utIGT05nIIhyMx3AAGSY+6dRbKmLeKyqCj8q4zw==",
"dev": true,
"dependencies": {
"ismobilejs": "^1.1.0"
}
},
"node_modules/@pixi/extract/node_modules/@pixi/ticker": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/ticker/-/ticker-5.3.11.tgz",
"integrity": "sha512-J1CChbSo1SQib1zL5f+FcFJZ6wN7LnWpztJVpKKYy3ZM/v4HSh48UnrGDKn5SLwSq4K7BxvZduwMQ8m4Paz1gQ==",
"dev": true,
"dependencies": {
"@pixi/settings": "5.3.11"
}
},
"node_modules/@pixi/extract/node_modules/@pixi/utils": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/utils/-/utils-5.3.11.tgz",
"integrity": "sha512-25ZSCTrfV8da28IzvLnTK0BGWB4dHpq5P9IEgFymJvVLK7sAyT+RPz18ewRbBHgALHsszDpfC+qrHp3i+VZP0Q==",
"dev": true,
"dependencies": {
"@pixi/constants": "5.3.11",
"@pixi/settings": "5.3.11",
"earcut": "^2.1.5",
"eventemitter3": "^3.1.0",
"url": "^0.11.0"
}
},
"node_modules/@pixi/filter-alpha": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/filter-alpha/-/filter-alpha-5.3.11.tgz",
"integrity": "sha512-HC4PbiEqDWSi3A715av7knFqD3knSXRxPJKG9mWat2CU9eCizSw+JxXp/okMU/fL4ewooiqQWVU2l1wXOHhVFw==",
"dev": true,
"dependencies": {
"@pixi/core": "5.3.11"
}
},
"node_modules/@pixi/filter-alpha/node_modules/@pixi/constants": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/constants/-/constants-5.3.11.tgz",
"integrity": "sha512-KwutCRu8dRYn3956ygPJlvglHjJM99OS2Qhp4QYG8a4BsPcwfpInsHUtGHngtsTZbnx32pxCd3pg9nPiV8EuVA==",
"dev": true
},
"node_modules/@pixi/filter-alpha/node_modules/@pixi/core": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/core/-/core-5.3.11.tgz",
"integrity": "sha512-U71OiC3rNt45/h8kaLGAQL4XsNh/ISoZtxVQNbtKTXlgjEAy1Q01Ht80yl0UJdiVxYQFlanCS/IG4++OkygioA==",
"dev": true,
"dependencies": {
"@pixi/constants": "5.3.11",
"@pixi/math": "5.3.11",
"@pixi/runner": "5.3.11",
"@pixi/settings": "5.3.11",
"@pixi/ticker": "5.3.11",
"@pixi/utils": "5.3.11"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/pixijs"
}
},
"node_modules/@pixi/filter-alpha/node_modules/@pixi/math": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/math/-/math-5.3.11.tgz",
"integrity": "sha512-GAupgFWVuOKxh8A322x8IctNgKi0/pLTJAXxmsLxcUw5PIQGgDw894HvzUriI+C0fsa9cEZHUbOCfyBKPQDLzw==",
"dev": true
},
"node_modules/@pixi/filter-alpha/node_modules/@pixi/runner": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/runner/-/runner-5.3.11.tgz",
"integrity": "sha512-Mtb0rnSG+6KOIbr/48AtrILr8PZQepYwqYixVEXM6UHl+7+Z5NIx9fOByiicdjEKJvHIAYveu8yp2/L1vkF+qw==",
"dev": true
},
"node_modules/@pixi/filter-alpha/node_modules/@pixi/settings": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/settings/-/settings-5.3.11.tgz",
"integrity": "sha512-ny/rjSmP+64WqxwmoY17KsFplxpuWbiMQ5SNAgkpi36z6k+utIGT05nIIhyMx3AAGSY+6dRbKmLeKyqCj8q4zw==",
"dev": true,
"dependencies": {
"ismobilejs": "^1.1.0"
}
},
"node_modules/@pixi/filter-alpha/node_modules/@pixi/ticker": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/ticker/-/ticker-5.3.11.tgz",
"integrity": "sha512-J1CChbSo1SQib1zL5f+FcFJZ6wN7LnWpztJVpKKYy3ZM/v4HSh48UnrGDKn5SLwSq4K7BxvZduwMQ8m4Paz1gQ==",
"dev": true,
"dependencies": {
"@pixi/settings": "5.3.11"
}
},
"node_modules/@pixi/filter-alpha/node_modules/@pixi/utils": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/utils/-/utils-5.3.11.tgz",
"integrity": "sha512-25ZSCTrfV8da28IzvLnTK0BGWB4dHpq5P9IEgFymJvVLK7sAyT+RPz18ewRbBHgALHsszDpfC+qrHp3i+VZP0Q==",
"dev": true,
"dependencies": {
"@pixi/constants": "5.3.11",
"@pixi/settings": "5.3.11",
"earcut": "^2.1.5",
"eventemitter3": "^3.1.0",
"url": "^0.11.0"
}
},
"node_modules/@pixi/filter-blur": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/filter-blur/-/filter-blur-5.3.11.tgz",
"integrity": "sha512-iW5cOMEcDiJidOV95bUfhxdcvwM9JzCoWAd+92gAie8L+ElRSHpu1jxXbKHjo/QczQV1LulOlheyDaJNpaBCDg==",
"dev": true,
"dependencies": {
"@pixi/core": "5.3.11",
"@pixi/settings": "5.3.11"
}
},
"node_modules/@pixi/filter-blur/node_modules/@pixi/constants": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/constants/-/constants-5.3.11.tgz",
"integrity": "sha512-KwutCRu8dRYn3956ygPJlvglHjJM99OS2Qhp4QYG8a4BsPcwfpInsHUtGHngtsTZbnx32pxCd3pg9nPiV8EuVA==",
"dev": true
},
"node_modules/@pixi/filter-blur/node_modules/@pixi/core": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/core/-/core-5.3.11.tgz",
"integrity": "sha512-U71OiC3rNt45/h8kaLGAQL4XsNh/ISoZtxVQNbtKTXlgjEAy1Q01Ht80yl0UJdiVxYQFlanCS/IG4++OkygioA==",
"dev": true,
"dependencies": {
"@pixi/constants": "5.3.11",
"@pixi/math": "5.3.11",
"@pixi/runner": "5.3.11",
"@pixi/settings": "5.3.11",
"@pixi/ticker": "5.3.11",
"@pixi/utils": "5.3.11"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/pixijs"
}
},
"node_modules/@pixi/filter-blur/node_modules/@pixi/math": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/math/-/math-5.3.11.tgz",
"integrity": "sha512-GAupgFWVuOKxh8A322x8IctNgKi0/pLTJAXxmsLxcUw5PIQGgDw894HvzUriI+C0fsa9cEZHUbOCfyBKPQDLzw==",
"dev": true
},
"node_modules/@pixi/filter-blur/node_modules/@pixi/runner": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/runner/-/runner-5.3.11.tgz",
"integrity": "sha512-Mtb0rnSG+6KOIbr/48AtrILr8PZQepYwqYixVEXM6UHl+7+Z5NIx9fOByiicdjEKJvHIAYveu8yp2/L1vkF+qw==",
"dev": true
},
"node_modules/@pixi/filter-blur/node_modules/@pixi/settings": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/settings/-/settings-5.3.11.tgz",
"integrity": "sha512-ny/rjSmP+64WqxwmoY17KsFplxpuWbiMQ5SNAgkpi36z6k+utIGT05nIIhyMx3AAGSY+6dRbKmLeKyqCj8q4zw==",
"dev": true,
"dependencies": {
"ismobilejs": "^1.1.0"
}
},
"node_modules/@pixi/filter-blur/node_modules/@pixi/ticker": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/ticker/-/ticker-5.3.11.tgz",
"integrity": "sha512-J1CChbSo1SQib1zL5f+FcFJZ6wN7LnWpztJVpKKYy3ZM/v4HSh48UnrGDKn5SLwSq4K7BxvZduwMQ8m4Paz1gQ==",
"dev": true,
"dependencies": {
"@pixi/settings": "5.3.11"
}
},
"node_modules/@pixi/filter-blur/node_modules/@pixi/utils": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/utils/-/utils-5.3.11.tgz",
"integrity": "sha512-25ZSCTrfV8da28IzvLnTK0BGWB4dHpq5P9IEgFymJvVLK7sAyT+RPz18ewRbBHgALHsszDpfC+qrHp3i+VZP0Q==",
"dev": true,
"dependencies": {
"@pixi/constants": "5.3.11",
"@pixi/settings": "5.3.11",
"earcut": "^2.1.5",
"eventemitter3": "^3.1.0",
"url": "^0.11.0"
}
},
"node_modules/@pixi/filter-color-matrix": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/filter-color-matrix/-/filter-color-matrix-5.3.11.tgz",
"integrity": "sha512-u9NT4+N1I3XV9ygwsmF8/jIwCLqNCLeFOdM4f73kbw/UmakZZ6i6xjjJMc5YFUpC25qDr1TFlqgdGGGHAPl4ug==",
"dev": true,
"dependencies": {
"@pixi/core": "5.3.11"
}
},
"node_modules/@pixi/filter-color-matrix/node_modules/@pixi/constants": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/constants/-/constants-5.3.11.tgz",
"integrity": "sha512-KwutCRu8dRYn3956ygPJlvglHjJM99OS2Qhp4QYG8a4BsPcwfpInsHUtGHngtsTZbnx32pxCd3pg9nPiV8EuVA==",
"dev": true
},
"node_modules/@pixi/filter-color-matrix/node_modules/@pixi/core": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/core/-/core-5.3.11.tgz",
"integrity": "sha512-U71OiC3rNt45/h8kaLGAQL4XsNh/ISoZtxVQNbtKTXlgjEAy1Q01Ht80yl0UJdiVxYQFlanCS/IG4++OkygioA==",
"dev": true,
"dependencies": {
"@pixi/constants": "5.3.11",
"@pixi/math": "5.3.11",
"@pixi/runner": "5.3.11",
"@pixi/settings": "5.3.11",
"@pixi/ticker": "5.3.11",
"@pixi/utils": "5.3.11"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/pixijs"
}
},
"node_modules/@pixi/filter-color-matrix/node_modules/@pixi/math": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/math/-/math-5.3.11.tgz",
"integrity": "sha512-GAupgFWVuOKxh8A322x8IctNgKi0/pLTJAXxmsLxcUw5PIQGgDw894HvzUriI+C0fsa9cEZHUbOCfyBKPQDLzw==",
"dev": true
},
"node_modules/@pixi/filter-color-matrix/node_modules/@pixi/runner": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/runner/-/runner-5.3.11.tgz",
"integrity": "sha512-Mtb0rnSG+6KOIbr/48AtrILr8PZQepYwqYixVEXM6UHl+7+Z5NIx9fOByiicdjEKJvHIAYveu8yp2/L1vkF+qw==",
"dev": true
},
"node_modules/@pixi/filter-color-matrix/node_modules/@pixi/settings": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/settings/-/settings-5.3.11.tgz",
"integrity": "sha512-ny/rjSmP+64WqxwmoY17KsFplxpuWbiMQ5SNAgkpi36z6k+utIGT05nIIhyMx3AAGSY+6dRbKmLeKyqCj8q4zw==",
"dev": true,
"dependencies": {
"ismobilejs": "^1.1.0"
}
},
"node_modules/@pixi/filter-color-matrix/node_modules/@pixi/ticker": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/ticker/-/ticker-5.3.11.tgz",
"integrity": "sha512-J1CChbSo1SQib1zL5f+FcFJZ6wN7LnWpztJVpKKYy3ZM/v4HSh48UnrGDKn5SLwSq4K7BxvZduwMQ8m4Paz1gQ==",
"dev": true,
"dependencies": {
"@pixi/settings": "5.3.11"
}
},
"node_modules/@pixi/filter-color-matrix/node_modules/@pixi/utils": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/utils/-/utils-5.3.11.tgz",
"integrity": "sha512-25ZSCTrfV8da28IzvLnTK0BGWB4dHpq5P9IEgFymJvVLK7sAyT+RPz18ewRbBHgALHsszDpfC+qrHp3i+VZP0Q==",
"dev": true,
"dependencies": {
"@pixi/constants": "5.3.11",
"@pixi/settings": "5.3.11",
"earcut": "^2.1.5",
"eventemitter3": "^3.1.0",
"url": "^0.11.0"
}
},
"node_modules/@pixi/filter-displacement": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/filter-displacement/-/filter-displacement-5.3.11.tgz",
"integrity": "sha512-CTIy7C/L9I1X3VNx4nMzQbMFvznsGk2viQh0dSo8r5NLgmaAdxhkGI0KUpNjLBz30278tzFfNuRe59K1y1kHuw==",
"dev": true,
"dependencies": {
"@pixi/core": "5.3.11",
"@pixi/math": "5.3.11"
}
},
"node_modules/@pixi/filter-displacement/node_modules/@pixi/constants": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/constants/-/constants-5.3.11.tgz",
"integrity": "sha512-KwutCRu8dRYn3956ygPJlvglHjJM99OS2Qhp4QYG8a4BsPcwfpInsHUtGHngtsTZbnx32pxCd3pg9nPiV8EuVA==",
"dev": true
},
"node_modules/@pixi/filter-displacement/node_modules/@pixi/core": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/core/-/core-5.3.11.tgz",
"integrity": "sha512-U71OiC3rNt45/h8kaLGAQL4XsNh/ISoZtxVQNbtKTXlgjEAy1Q01Ht80yl0UJdiVxYQFlanCS/IG4++OkygioA==",
"dev": true,
"dependencies": {
"@pixi/constants": "5.3.11",
"@pixi/math": "5.3.11",
"@pixi/runner": "5.3.11",
"@pixi/settings": "5.3.11",
"@pixi/ticker": "5.3.11",
"@pixi/utils": "5.3.11"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/pixijs"
}
},
"node_modules/@pixi/filter-displacement/node_modules/@pixi/math": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/math/-/math-5.3.11.tgz",
"integrity": "sha512-GAupgFWVuOKxh8A322x8IctNgKi0/pLTJAXxmsLxcUw5PIQGgDw894HvzUriI+C0fsa9cEZHUbOCfyBKPQDLzw==",
"dev": true
},
"node_modules/@pixi/filter-displacement/node_modules/@pixi/runner": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/runner/-/runner-5.3.11.tgz",
"integrity": "sha512-Mtb0rnSG+6KOIbr/48AtrILr8PZQepYwqYixVEXM6UHl+7+Z5NIx9fOByiicdjEKJvHIAYveu8yp2/L1vkF+qw==",
"dev": true
},
"node_modules/@pixi/filter-displacement/node_modules/@pixi/settings": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/settings/-/settings-5.3.11.tgz",
"integrity": "sha512-ny/rjSmP+64WqxwmoY17KsFplxpuWbiMQ5SNAgkpi36z6k+utIGT05nIIhyMx3AAGSY+6dRbKmLeKyqCj8q4zw==",
"dev": true,
"dependencies": {
"ismobilejs": "^1.1.0"
}
},
"node_modules/@pixi/filter-displacement/node_modules/@pixi/ticker": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/ticker/-/ticker-5.3.11.tgz",
"integrity": "sha512-J1CChbSo1SQib1zL5f+FcFJZ6wN7LnWpztJVpKKYy3ZM/v4HSh48UnrGDKn5SLwSq4K7BxvZduwMQ8m4Paz1gQ==",
"dev": true,
"dependencies": {
"@pixi/settings": "5.3.11"
}
},
"node_modules/@pixi/filter-displacement/node_modules/@pixi/utils": {
"version": "5.3.11",
"resolved": "https://registry.npmjs.org/@pixi/utils/-/utils-5.3.11.tgz",
"integrity": "sha512-25ZSCTrfV8da28IzvLnTK0BGWB4dHpq5P9IEgFymJvVLK7sAyT+RPz18ewRbBHgALHsszDpfC+qrHp3i+VZP0Q==",
"dev": true,
"dependencies": {
"@pixi/constants": "5.3.11",
"@pixi/settings": "5.3.11",