enefel 2.9.1 → 2.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +7 -0
- package/2025/newSkills.ts +769 -0
- package/2025/raceMigration.ts +66 -0
- package/2025/rawTeamsData.ts +1726 -0
- package/2025/skillMigration.ts +155 -0
- package/avatarsSeason.ts +61 -0
- package/career.ts +64 -8
- package/career2025.ts +2752 -0
- package/dice.ts +40 -8
- package/dist/2025/newSkills.d.ts +10 -0
- package/dist/2025/newSkills.js +663 -0
- package/dist/2025/raceMigration.d.ts +10 -0
- package/dist/2025/raceMigration.js +53 -0
- package/dist/2025/rawTeamsData.d.ts +12 -0
- package/dist/2025/rawTeamsData.js +1699 -0
- package/dist/2025/skillMigration.d.ts +31 -0
- package/dist/2025/skillMigration.js +95 -0
- package/dist/avatarsSeason.d.ts +22 -0
- package/dist/avatarsSeason.js +54 -0
- package/dist/career.d.ts +13 -4
- package/dist/career.js +36 -7
- package/dist/career2025.d.ts +192 -0
- package/dist/career2025.js +2611 -0
- package/dist/dice.d.ts +10 -2
- package/dist/dice.js +31 -8
- package/dist/index.d.ts +17 -2
- package/dist/index.js +44 -5
- package/dist/move.d.ts +6 -2
- package/dist/move.js +35 -0
- package/dist/package-lock.json +913 -7
- package/dist/package.json +6 -2
- package/dist/pitch.d.ts +10 -1
- package/dist/pitch.js +16 -0
- package/dist/player.d.ts +8 -4
- package/dist/player.js +104 -20
- package/dist/position.d.ts +4 -0
- package/dist/position.js +17 -1
- package/dist/race.d.ts +23 -12
- package/dist/race.js +210 -2
- package/dist/skill.d.ts +26 -3
- package/dist/skill.js +199 -81
- package/dist/skills/hitAndRun.d.ts +10 -0
- package/dist/skills/hitAndRun.js +12 -0
- package/dist/skills/safePairOfHands.d.ts +28 -0
- package/dist/skills/safePairOfHands.js +18 -0
- package/dist/skills/sidestep.d.ts +21 -0
- package/dist/skills/sidestep.js +20 -0
- package/dist/status.d.ts +4 -1
- package/dist/status.js +14 -4
- package/dist/store.d.ts +3 -0
- package/dist/store.js +3 -0
- package/dist/teams/career_v2025.d.ts +246 -0
- package/dist/teams/career_v2025.js +3512 -0
- package/dist/teams/convert-csv-to-career.d.ts +1 -0
- package/dist/teams/convert-csv-to-career.js +1085 -0
- package/dist/types/models.d.ts +4 -0
- package/index.ts +57 -4
- package/jest.config.js +3 -0
- package/move.ts +50 -2
- package/npm-login.sh +0 -0
- package/package.json +6 -2
- package/pitch.ts +22 -0
- package/player.ts +105 -22
- package/position.ts +16 -0
- package/race.ts +227 -13
- package/skill.ts +217 -83
- package/skills/hitAndRun.ts +14 -0
- package/skills/safePairOfHands.ts +33 -0
- package/skills/sidestep.ts +25 -0
- package/status.ts +15 -3
- package/store.ts +3 -0
- package/teams/README.md +53 -0
- package/teams/clean-stats.js +54 -0
- package/teams/convert-csv-to-career.ts +1209 -0
- package/teams/players_clean.csv +107 -0
- package/teams/players_next.csv +21 -0
- package/types/models.ts +4 -0
package/dist/package-lock.json
CHANGED
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "enefel",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.11.0",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "enefel",
|
|
9
|
-
"version": "2.
|
|
9
|
+
"version": "2.11.0",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
|
+
"csv-parse": "^6.1.0",
|
|
13
|
+
"csv-stringify": "^6.6.0",
|
|
14
|
+
"jsdom": "^27.2.0",
|
|
12
15
|
"seedrandom": "3.0.5",
|
|
13
16
|
"yup": "^0.29.3"
|
|
14
17
|
},
|
|
@@ -23,6 +26,12 @@
|
|
|
23
26
|
"typescript": "^5.8.3"
|
|
24
27
|
}
|
|
25
28
|
},
|
|
29
|
+
"node_modules/@acemir/cssom": {
|
|
30
|
+
"version": "0.9.23",
|
|
31
|
+
"resolved": "https://registry.npmjs.org/@acemir/cssom/-/cssom-0.9.23.tgz",
|
|
32
|
+
"integrity": "sha512-2kJ1HxBKzPLbmhZpxBiTZggjtgCwKg1ma5RHShxvd6zgqhDEdEkzpiwe7jLkI2p2BrZvFCXIihdoMkl1H39VnA==",
|
|
33
|
+
"license": "MIT"
|
|
34
|
+
},
|
|
26
35
|
"node_modules/@ampproject/remapping": {
|
|
27
36
|
"version": "2.3.0",
|
|
28
37
|
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
|
|
@@ -37,6 +46,56 @@
|
|
|
37
46
|
"node": ">=6.0.0"
|
|
38
47
|
}
|
|
39
48
|
},
|
|
49
|
+
"node_modules/@asamuzakjp/css-color": {
|
|
50
|
+
"version": "4.0.5",
|
|
51
|
+
"resolved": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-4.0.5.tgz",
|
|
52
|
+
"integrity": "sha512-lMrXidNhPGsDjytDy11Vwlb6OIGrT3CmLg3VWNFyWkLWtijKl7xjvForlh8vuj0SHGjgl4qZEQzUmYTeQA2JFQ==",
|
|
53
|
+
"license": "MIT",
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@csstools/css-calc": "^2.1.4",
|
|
56
|
+
"@csstools/css-color-parser": "^3.1.0",
|
|
57
|
+
"@csstools/css-parser-algorithms": "^3.0.5",
|
|
58
|
+
"@csstools/css-tokenizer": "^3.0.4",
|
|
59
|
+
"lru-cache": "^11.2.1"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"node_modules/@asamuzakjp/css-color/node_modules/lru-cache": {
|
|
63
|
+
"version": "11.2.2",
|
|
64
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.2.tgz",
|
|
65
|
+
"integrity": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==",
|
|
66
|
+
"license": "ISC",
|
|
67
|
+
"engines": {
|
|
68
|
+
"node": "20 || >=22"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"node_modules/@asamuzakjp/dom-selector": {
|
|
72
|
+
"version": "6.7.4",
|
|
73
|
+
"resolved": "https://registry.npmjs.org/@asamuzakjp/dom-selector/-/dom-selector-6.7.4.tgz",
|
|
74
|
+
"integrity": "sha512-buQDjkm+wDPXd6c13534URWZqbz0RP5PAhXZ+LIoa5LgwInT9HVJvGIJivg75vi8I13CxDGdTnz+aY5YUJlIAA==",
|
|
75
|
+
"license": "MIT",
|
|
76
|
+
"dependencies": {
|
|
77
|
+
"@asamuzakjp/nwsapi": "^2.3.9",
|
|
78
|
+
"bidi-js": "^1.0.3",
|
|
79
|
+
"css-tree": "^3.1.0",
|
|
80
|
+
"is-potential-custom-element-name": "^1.0.1",
|
|
81
|
+
"lru-cache": "^11.2.2"
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"node_modules/@asamuzakjp/dom-selector/node_modules/lru-cache": {
|
|
85
|
+
"version": "11.2.2",
|
|
86
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.2.tgz",
|
|
87
|
+
"integrity": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==",
|
|
88
|
+
"license": "ISC",
|
|
89
|
+
"engines": {
|
|
90
|
+
"node": "20 || >=22"
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"node_modules/@asamuzakjp/nwsapi": {
|
|
94
|
+
"version": "2.3.9",
|
|
95
|
+
"resolved": "https://registry.npmjs.org/@asamuzakjp/nwsapi/-/nwsapi-2.3.9.tgz",
|
|
96
|
+
"integrity": "sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==",
|
|
97
|
+
"license": "MIT"
|
|
98
|
+
},
|
|
40
99
|
"node_modules/@babel/code-frame": {
|
|
41
100
|
"version": "7.26.2",
|
|
42
101
|
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
|
|
@@ -552,6 +611,135 @@
|
|
|
552
611
|
"dev": true,
|
|
553
612
|
"license": "MIT"
|
|
554
613
|
},
|
|
614
|
+
"node_modules/@csstools/color-helpers": {
|
|
615
|
+
"version": "5.1.0",
|
|
616
|
+
"resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.1.0.tgz",
|
|
617
|
+
"integrity": "sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==",
|
|
618
|
+
"funding": [
|
|
619
|
+
{
|
|
620
|
+
"type": "github",
|
|
621
|
+
"url": "https://github.com/sponsors/csstools"
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"type": "opencollective",
|
|
625
|
+
"url": "https://opencollective.com/csstools"
|
|
626
|
+
}
|
|
627
|
+
],
|
|
628
|
+
"license": "MIT-0",
|
|
629
|
+
"engines": {
|
|
630
|
+
"node": ">=18"
|
|
631
|
+
}
|
|
632
|
+
},
|
|
633
|
+
"node_modules/@csstools/css-calc": {
|
|
634
|
+
"version": "2.1.4",
|
|
635
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.4.tgz",
|
|
636
|
+
"integrity": "sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==",
|
|
637
|
+
"funding": [
|
|
638
|
+
{
|
|
639
|
+
"type": "github",
|
|
640
|
+
"url": "https://github.com/sponsors/csstools"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"type": "opencollective",
|
|
644
|
+
"url": "https://opencollective.com/csstools"
|
|
645
|
+
}
|
|
646
|
+
],
|
|
647
|
+
"license": "MIT",
|
|
648
|
+
"engines": {
|
|
649
|
+
"node": ">=18"
|
|
650
|
+
},
|
|
651
|
+
"peerDependencies": {
|
|
652
|
+
"@csstools/css-parser-algorithms": "^3.0.5",
|
|
653
|
+
"@csstools/css-tokenizer": "^3.0.4"
|
|
654
|
+
}
|
|
655
|
+
},
|
|
656
|
+
"node_modules/@csstools/css-color-parser": {
|
|
657
|
+
"version": "3.1.0",
|
|
658
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz",
|
|
659
|
+
"integrity": "sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==",
|
|
660
|
+
"funding": [
|
|
661
|
+
{
|
|
662
|
+
"type": "github",
|
|
663
|
+
"url": "https://github.com/sponsors/csstools"
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
"type": "opencollective",
|
|
667
|
+
"url": "https://opencollective.com/csstools"
|
|
668
|
+
}
|
|
669
|
+
],
|
|
670
|
+
"license": "MIT",
|
|
671
|
+
"dependencies": {
|
|
672
|
+
"@csstools/color-helpers": "^5.1.0",
|
|
673
|
+
"@csstools/css-calc": "^2.1.4"
|
|
674
|
+
},
|
|
675
|
+
"engines": {
|
|
676
|
+
"node": ">=18"
|
|
677
|
+
},
|
|
678
|
+
"peerDependencies": {
|
|
679
|
+
"@csstools/css-parser-algorithms": "^3.0.5",
|
|
680
|
+
"@csstools/css-tokenizer": "^3.0.4"
|
|
681
|
+
}
|
|
682
|
+
},
|
|
683
|
+
"node_modules/@csstools/css-parser-algorithms": {
|
|
684
|
+
"version": "3.0.5",
|
|
685
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz",
|
|
686
|
+
"integrity": "sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==",
|
|
687
|
+
"funding": [
|
|
688
|
+
{
|
|
689
|
+
"type": "github",
|
|
690
|
+
"url": "https://github.com/sponsors/csstools"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"type": "opencollective",
|
|
694
|
+
"url": "https://opencollective.com/csstools"
|
|
695
|
+
}
|
|
696
|
+
],
|
|
697
|
+
"license": "MIT",
|
|
698
|
+
"engines": {
|
|
699
|
+
"node": ">=18"
|
|
700
|
+
},
|
|
701
|
+
"peerDependencies": {
|
|
702
|
+
"@csstools/css-tokenizer": "^3.0.4"
|
|
703
|
+
}
|
|
704
|
+
},
|
|
705
|
+
"node_modules/@csstools/css-syntax-patches-for-csstree": {
|
|
706
|
+
"version": "1.0.16",
|
|
707
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-syntax-patches-for-csstree/-/css-syntax-patches-for-csstree-1.0.16.tgz",
|
|
708
|
+
"integrity": "sha512-2SpS4/UaWQaGpBINyG5ZuCHnUDeVByOhvbkARwfmnfxDvTaj80yOI1cD8Tw93ICV5Fx4fnyDKWQZI1CDtcWyUg==",
|
|
709
|
+
"funding": [
|
|
710
|
+
{
|
|
711
|
+
"type": "github",
|
|
712
|
+
"url": "https://github.com/sponsors/csstools"
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"type": "opencollective",
|
|
716
|
+
"url": "https://opencollective.com/csstools"
|
|
717
|
+
}
|
|
718
|
+
],
|
|
719
|
+
"license": "MIT-0",
|
|
720
|
+
"engines": {
|
|
721
|
+
"node": ">=18"
|
|
722
|
+
}
|
|
723
|
+
},
|
|
724
|
+
"node_modules/@csstools/css-tokenizer": {
|
|
725
|
+
"version": "3.0.4",
|
|
726
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz",
|
|
727
|
+
"integrity": "sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==",
|
|
728
|
+
"funding": [
|
|
729
|
+
{
|
|
730
|
+
"type": "github",
|
|
731
|
+
"url": "https://github.com/sponsors/csstools"
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"type": "opencollective",
|
|
735
|
+
"url": "https://opencollective.com/csstools"
|
|
736
|
+
}
|
|
737
|
+
],
|
|
738
|
+
"license": "MIT",
|
|
739
|
+
"engines": {
|
|
740
|
+
"node": ">=18"
|
|
741
|
+
}
|
|
742
|
+
},
|
|
555
743
|
"node_modules/@istanbuljs/load-nyc-config": {
|
|
556
744
|
"version": "1.1.0",
|
|
557
745
|
"resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
|
|
@@ -1102,6 +1290,15 @@
|
|
|
1102
1290
|
"dev": true,
|
|
1103
1291
|
"license": "MIT"
|
|
1104
1292
|
},
|
|
1293
|
+
"node_modules/agent-base": {
|
|
1294
|
+
"version": "7.1.4",
|
|
1295
|
+
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
|
|
1296
|
+
"integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
|
|
1297
|
+
"license": "MIT",
|
|
1298
|
+
"engines": {
|
|
1299
|
+
"node": ">= 14"
|
|
1300
|
+
}
|
|
1301
|
+
},
|
|
1105
1302
|
"node_modules/ansi-escapes": {
|
|
1106
1303
|
"version": "4.3.2",
|
|
1107
1304
|
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
|
|
@@ -1321,6 +1518,15 @@
|
|
|
1321
1518
|
"dev": true,
|
|
1322
1519
|
"license": "MIT"
|
|
1323
1520
|
},
|
|
1521
|
+
"node_modules/bidi-js": {
|
|
1522
|
+
"version": "1.0.3",
|
|
1523
|
+
"resolved": "https://registry.npmjs.org/bidi-js/-/bidi-js-1.0.3.tgz",
|
|
1524
|
+
"integrity": "sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==",
|
|
1525
|
+
"license": "MIT",
|
|
1526
|
+
"dependencies": {
|
|
1527
|
+
"require-from-string": "^2.0.2"
|
|
1528
|
+
}
|
|
1529
|
+
},
|
|
1324
1530
|
"node_modules/brace-expansion": {
|
|
1325
1531
|
"version": "1.1.11",
|
|
1326
1532
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
|
|
@@ -1606,11 +1812,62 @@
|
|
|
1606
1812
|
"node": ">= 8"
|
|
1607
1813
|
}
|
|
1608
1814
|
},
|
|
1815
|
+
"node_modules/css-tree": {
|
|
1816
|
+
"version": "3.1.0",
|
|
1817
|
+
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz",
|
|
1818
|
+
"integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==",
|
|
1819
|
+
"license": "MIT",
|
|
1820
|
+
"dependencies": {
|
|
1821
|
+
"mdn-data": "2.12.2",
|
|
1822
|
+
"source-map-js": "^1.0.1"
|
|
1823
|
+
},
|
|
1824
|
+
"engines": {
|
|
1825
|
+
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
|
|
1826
|
+
}
|
|
1827
|
+
},
|
|
1828
|
+
"node_modules/cssstyle": {
|
|
1829
|
+
"version": "5.3.3",
|
|
1830
|
+
"resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-5.3.3.tgz",
|
|
1831
|
+
"integrity": "sha512-OytmFH+13/QXONJcC75QNdMtKpceNk3u8ThBjyyYjkEcy/ekBwR1mMAuNvi3gdBPW3N5TlCzQ0WZw8H0lN/bDw==",
|
|
1832
|
+
"license": "MIT",
|
|
1833
|
+
"dependencies": {
|
|
1834
|
+
"@asamuzakjp/css-color": "^4.0.3",
|
|
1835
|
+
"@csstools/css-syntax-patches-for-csstree": "^1.0.14",
|
|
1836
|
+
"css-tree": "^3.1.0"
|
|
1837
|
+
},
|
|
1838
|
+
"engines": {
|
|
1839
|
+
"node": ">=20"
|
|
1840
|
+
}
|
|
1841
|
+
},
|
|
1842
|
+
"node_modules/csv-parse": {
|
|
1843
|
+
"version": "6.1.0",
|
|
1844
|
+
"resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-6.1.0.tgz",
|
|
1845
|
+
"integrity": "sha512-CEE+jwpgLn+MmtCpVcPtiCZpVtB6Z2OKPTr34pycYYoL7sxdOkXDdQ4lRiw6ioC0q6BLqhc6cKweCVvral8yhw==",
|
|
1846
|
+
"license": "MIT"
|
|
1847
|
+
},
|
|
1848
|
+
"node_modules/csv-stringify": {
|
|
1849
|
+
"version": "6.6.0",
|
|
1850
|
+
"resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-6.6.0.tgz",
|
|
1851
|
+
"integrity": "sha512-YW32lKOmIBgbxtu3g5SaiqWNwa/9ISQt2EcgOq0+RAIFufFp9is6tqNnKahqE5kuKvrnYAzs28r+s6pXJR8Vcw==",
|
|
1852
|
+
"license": "MIT"
|
|
1853
|
+
},
|
|
1854
|
+
"node_modules/data-urls": {
|
|
1855
|
+
"version": "6.0.0",
|
|
1856
|
+
"resolved": "https://registry.npmjs.org/data-urls/-/data-urls-6.0.0.tgz",
|
|
1857
|
+
"integrity": "sha512-BnBS08aLUM+DKamupXs3w2tJJoqU+AkaE/+6vQxi/G/DPmIZFJJp9Dkb1kM03AZx8ADehDUZgsNxju3mPXZYIA==",
|
|
1858
|
+
"license": "MIT",
|
|
1859
|
+
"dependencies": {
|
|
1860
|
+
"whatwg-mimetype": "^4.0.0",
|
|
1861
|
+
"whatwg-url": "^15.0.0"
|
|
1862
|
+
},
|
|
1863
|
+
"engines": {
|
|
1864
|
+
"node": ">=20"
|
|
1865
|
+
}
|
|
1866
|
+
},
|
|
1609
1867
|
"node_modules/debug": {
|
|
1610
1868
|
"version": "4.4.0",
|
|
1611
1869
|
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
|
|
1612
1870
|
"integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
|
|
1613
|
-
"dev": true,
|
|
1614
1871
|
"license": "MIT",
|
|
1615
1872
|
"dependencies": {
|
|
1616
1873
|
"ms": "^2.1.3"
|
|
@@ -1624,6 +1881,12 @@
|
|
|
1624
1881
|
}
|
|
1625
1882
|
}
|
|
1626
1883
|
},
|
|
1884
|
+
"node_modules/decimal.js": {
|
|
1885
|
+
"version": "10.6.0",
|
|
1886
|
+
"resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz",
|
|
1887
|
+
"integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==",
|
|
1888
|
+
"license": "MIT"
|
|
1889
|
+
},
|
|
1627
1890
|
"node_modules/dedent": {
|
|
1628
1891
|
"version": "1.5.3",
|
|
1629
1892
|
"resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz",
|
|
@@ -1712,6 +1975,18 @@
|
|
|
1712
1975
|
"dev": true,
|
|
1713
1976
|
"license": "MIT"
|
|
1714
1977
|
},
|
|
1978
|
+
"node_modules/entities": {
|
|
1979
|
+
"version": "6.0.1",
|
|
1980
|
+
"resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
|
|
1981
|
+
"integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
|
|
1982
|
+
"license": "BSD-2-Clause",
|
|
1983
|
+
"engines": {
|
|
1984
|
+
"node": ">=0.12"
|
|
1985
|
+
},
|
|
1986
|
+
"funding": {
|
|
1987
|
+
"url": "https://github.com/fb55/entities?sponsor=1"
|
|
1988
|
+
}
|
|
1989
|
+
},
|
|
1715
1990
|
"node_modules/error-ex": {
|
|
1716
1991
|
"version": "1.3.2",
|
|
1717
1992
|
"resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
|
|
@@ -2027,6 +2302,18 @@
|
|
|
2027
2302
|
"node": ">= 0.4"
|
|
2028
2303
|
}
|
|
2029
2304
|
},
|
|
2305
|
+
"node_modules/html-encoding-sniffer": {
|
|
2306
|
+
"version": "4.0.0",
|
|
2307
|
+
"resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz",
|
|
2308
|
+
"integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==",
|
|
2309
|
+
"license": "MIT",
|
|
2310
|
+
"dependencies": {
|
|
2311
|
+
"whatwg-encoding": "^3.1.1"
|
|
2312
|
+
},
|
|
2313
|
+
"engines": {
|
|
2314
|
+
"node": ">=18"
|
|
2315
|
+
}
|
|
2316
|
+
},
|
|
2030
2317
|
"node_modules/html-escaper": {
|
|
2031
2318
|
"version": "2.0.2",
|
|
2032
2319
|
"resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
|
|
@@ -2034,6 +2321,32 @@
|
|
|
2034
2321
|
"dev": true,
|
|
2035
2322
|
"license": "MIT"
|
|
2036
2323
|
},
|
|
2324
|
+
"node_modules/http-proxy-agent": {
|
|
2325
|
+
"version": "7.0.2",
|
|
2326
|
+
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
|
|
2327
|
+
"integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
|
|
2328
|
+
"license": "MIT",
|
|
2329
|
+
"dependencies": {
|
|
2330
|
+
"agent-base": "^7.1.0",
|
|
2331
|
+
"debug": "^4.3.4"
|
|
2332
|
+
},
|
|
2333
|
+
"engines": {
|
|
2334
|
+
"node": ">= 14"
|
|
2335
|
+
}
|
|
2336
|
+
},
|
|
2337
|
+
"node_modules/https-proxy-agent": {
|
|
2338
|
+
"version": "7.0.6",
|
|
2339
|
+
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
|
|
2340
|
+
"integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
|
|
2341
|
+
"license": "MIT",
|
|
2342
|
+
"dependencies": {
|
|
2343
|
+
"agent-base": "^7.1.2",
|
|
2344
|
+
"debug": "4"
|
|
2345
|
+
},
|
|
2346
|
+
"engines": {
|
|
2347
|
+
"node": ">= 14"
|
|
2348
|
+
}
|
|
2349
|
+
},
|
|
2037
2350
|
"node_modules/human-signals": {
|
|
2038
2351
|
"version": "2.1.0",
|
|
2039
2352
|
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
|
|
@@ -2044,6 +2357,18 @@
|
|
|
2044
2357
|
"node": ">=10.17.0"
|
|
2045
2358
|
}
|
|
2046
2359
|
},
|
|
2360
|
+
"node_modules/iconv-lite": {
|
|
2361
|
+
"version": "0.6.3",
|
|
2362
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
|
|
2363
|
+
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
|
|
2364
|
+
"license": "MIT",
|
|
2365
|
+
"dependencies": {
|
|
2366
|
+
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
2367
|
+
},
|
|
2368
|
+
"engines": {
|
|
2369
|
+
"node": ">=0.10.0"
|
|
2370
|
+
}
|
|
2371
|
+
},
|
|
2047
2372
|
"node_modules/import-local": {
|
|
2048
2373
|
"version": "3.2.0",
|
|
2049
2374
|
"resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz",
|
|
@@ -2145,6 +2470,12 @@
|
|
|
2145
2470
|
"node": ">=0.12.0"
|
|
2146
2471
|
}
|
|
2147
2472
|
},
|
|
2473
|
+
"node_modules/is-potential-custom-element-name": {
|
|
2474
|
+
"version": "1.0.1",
|
|
2475
|
+
"resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
|
|
2476
|
+
"integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
|
|
2477
|
+
"license": "MIT"
|
|
2478
|
+
},
|
|
2148
2479
|
"node_modules/is-stream": {
|
|
2149
2480
|
"version": "2.0.1",
|
|
2150
2481
|
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
|
|
@@ -2846,6 +3177,45 @@
|
|
|
2846
3177
|
"js-yaml": "bin/js-yaml.js"
|
|
2847
3178
|
}
|
|
2848
3179
|
},
|
|
3180
|
+
"node_modules/jsdom": {
|
|
3181
|
+
"version": "27.2.0",
|
|
3182
|
+
"resolved": "https://registry.npmjs.org/jsdom/-/jsdom-27.2.0.tgz",
|
|
3183
|
+
"integrity": "sha512-454TI39PeRDW1LgpyLPyURtB4Zx1tklSr6+OFOipsxGUH1WMTvk6C65JQdrj455+DP2uJ1+veBEHTGFKWVLFoA==",
|
|
3184
|
+
"license": "MIT",
|
|
3185
|
+
"dependencies": {
|
|
3186
|
+
"@acemir/cssom": "^0.9.23",
|
|
3187
|
+
"@asamuzakjp/dom-selector": "^6.7.4",
|
|
3188
|
+
"cssstyle": "^5.3.3",
|
|
3189
|
+
"data-urls": "^6.0.0",
|
|
3190
|
+
"decimal.js": "^10.6.0",
|
|
3191
|
+
"html-encoding-sniffer": "^4.0.0",
|
|
3192
|
+
"http-proxy-agent": "^7.0.2",
|
|
3193
|
+
"https-proxy-agent": "^7.0.6",
|
|
3194
|
+
"is-potential-custom-element-name": "^1.0.1",
|
|
3195
|
+
"parse5": "^8.0.0",
|
|
3196
|
+
"saxes": "^6.0.0",
|
|
3197
|
+
"symbol-tree": "^3.2.4",
|
|
3198
|
+
"tough-cookie": "^6.0.0",
|
|
3199
|
+
"w3c-xmlserializer": "^5.0.0",
|
|
3200
|
+
"webidl-conversions": "^8.0.0",
|
|
3201
|
+
"whatwg-encoding": "^3.1.1",
|
|
3202
|
+
"whatwg-mimetype": "^4.0.0",
|
|
3203
|
+
"whatwg-url": "^15.1.0",
|
|
3204
|
+
"ws": "^8.18.3",
|
|
3205
|
+
"xml-name-validator": "^5.0.0"
|
|
3206
|
+
},
|
|
3207
|
+
"engines": {
|
|
3208
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
3209
|
+
},
|
|
3210
|
+
"peerDependencies": {
|
|
3211
|
+
"canvas": "^3.0.0"
|
|
3212
|
+
},
|
|
3213
|
+
"peerDependenciesMeta": {
|
|
3214
|
+
"canvas": {
|
|
3215
|
+
"optional": true
|
|
3216
|
+
}
|
|
3217
|
+
}
|
|
3218
|
+
},
|
|
2849
3219
|
"node_modules/jsesc": {
|
|
2850
3220
|
"version": "3.1.0",
|
|
2851
3221
|
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
|
|
@@ -2981,6 +3351,12 @@
|
|
|
2981
3351
|
"tmpl": "1.0.5"
|
|
2982
3352
|
}
|
|
2983
3353
|
},
|
|
3354
|
+
"node_modules/mdn-data": {
|
|
3355
|
+
"version": "2.12.2",
|
|
3356
|
+
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz",
|
|
3357
|
+
"integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==",
|
|
3358
|
+
"license": "CC0-1.0"
|
|
3359
|
+
},
|
|
2984
3360
|
"node_modules/merge-stream": {
|
|
2985
3361
|
"version": "2.0.0",
|
|
2986
3362
|
"resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
|
|
@@ -3029,7 +3405,6 @@
|
|
|
3029
3405
|
"version": "2.1.3",
|
|
3030
3406
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
3031
3407
|
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
3032
|
-
"dev": true,
|
|
3033
3408
|
"license": "MIT"
|
|
3034
3409
|
},
|
|
3035
3410
|
"node_modules/natural-compare": {
|
|
@@ -3176,6 +3551,18 @@
|
|
|
3176
3551
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
3177
3552
|
}
|
|
3178
3553
|
},
|
|
3554
|
+
"node_modules/parse5": {
|
|
3555
|
+
"version": "8.0.0",
|
|
3556
|
+
"resolved": "https://registry.npmjs.org/parse5/-/parse5-8.0.0.tgz",
|
|
3557
|
+
"integrity": "sha512-9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==",
|
|
3558
|
+
"license": "MIT",
|
|
3559
|
+
"dependencies": {
|
|
3560
|
+
"entities": "^6.0.0"
|
|
3561
|
+
},
|
|
3562
|
+
"funding": {
|
|
3563
|
+
"url": "https://github.com/inikulin/parse5?sponsor=1"
|
|
3564
|
+
}
|
|
3565
|
+
},
|
|
3179
3566
|
"node_modules/path-exists": {
|
|
3180
3567
|
"version": "4.0.0",
|
|
3181
3568
|
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
|
|
@@ -3304,6 +3691,15 @@
|
|
|
3304
3691
|
"integrity": "sha512-sFPkHQjVKheDNnPvotjQmm3KD3uk1fWKUN7CrpdbwmUx3CrG3QiM8QpTSimvig5vTXmTvjz7+TDvXOI9+4rkcg==",
|
|
3305
3692
|
"license": "MIT"
|
|
3306
3693
|
},
|
|
3694
|
+
"node_modules/punycode": {
|
|
3695
|
+
"version": "2.3.1",
|
|
3696
|
+
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
|
|
3697
|
+
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
|
3698
|
+
"license": "MIT",
|
|
3699
|
+
"engines": {
|
|
3700
|
+
"node": ">=6"
|
|
3701
|
+
}
|
|
3702
|
+
},
|
|
3307
3703
|
"node_modules/pure-rand": {
|
|
3308
3704
|
"version": "6.1.0",
|
|
3309
3705
|
"resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz",
|
|
@@ -3344,6 +3740,15 @@
|
|
|
3344
3740
|
"node": ">=0.10.0"
|
|
3345
3741
|
}
|
|
3346
3742
|
},
|
|
3743
|
+
"node_modules/require-from-string": {
|
|
3744
|
+
"version": "2.0.2",
|
|
3745
|
+
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
|
|
3746
|
+
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
|
|
3747
|
+
"license": "MIT",
|
|
3748
|
+
"engines": {
|
|
3749
|
+
"node": ">=0.10.0"
|
|
3750
|
+
}
|
|
3751
|
+
},
|
|
3347
3752
|
"node_modules/resolve": {
|
|
3348
3753
|
"version": "1.22.10",
|
|
3349
3754
|
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz",
|
|
@@ -3398,6 +3803,24 @@
|
|
|
3398
3803
|
"node": ">=10"
|
|
3399
3804
|
}
|
|
3400
3805
|
},
|
|
3806
|
+
"node_modules/safer-buffer": {
|
|
3807
|
+
"version": "2.1.2",
|
|
3808
|
+
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
|
3809
|
+
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
|
3810
|
+
"license": "MIT"
|
|
3811
|
+
},
|
|
3812
|
+
"node_modules/saxes": {
|
|
3813
|
+
"version": "6.0.0",
|
|
3814
|
+
"resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz",
|
|
3815
|
+
"integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==",
|
|
3816
|
+
"license": "ISC",
|
|
3817
|
+
"dependencies": {
|
|
3818
|
+
"xmlchars": "^2.2.0"
|
|
3819
|
+
},
|
|
3820
|
+
"engines": {
|
|
3821
|
+
"node": ">=v12.22.7"
|
|
3822
|
+
}
|
|
3823
|
+
},
|
|
3401
3824
|
"node_modules/seedrandom": {
|
|
3402
3825
|
"version": "3.0.5",
|
|
3403
3826
|
"resolved": "https://registry.npmjs.org/seedrandom/-/seedrandom-3.0.5.tgz",
|
|
@@ -3474,6 +3897,15 @@
|
|
|
3474
3897
|
"node": ">=0.10.0"
|
|
3475
3898
|
}
|
|
3476
3899
|
},
|
|
3900
|
+
"node_modules/source-map-js": {
|
|
3901
|
+
"version": "1.2.1",
|
|
3902
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
3903
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
3904
|
+
"license": "BSD-3-Clause",
|
|
3905
|
+
"engines": {
|
|
3906
|
+
"node": ">=0.10.0"
|
|
3907
|
+
}
|
|
3908
|
+
},
|
|
3477
3909
|
"node_modules/source-map-support": {
|
|
3478
3910
|
"version": "0.5.13",
|
|
3479
3911
|
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz",
|
|
@@ -3606,6 +4038,12 @@
|
|
|
3606
4038
|
"url": "https://github.com/sponsors/ljharb"
|
|
3607
4039
|
}
|
|
3608
4040
|
},
|
|
4041
|
+
"node_modules/symbol-tree": {
|
|
4042
|
+
"version": "3.2.4",
|
|
4043
|
+
"resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
|
|
4044
|
+
"integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
|
|
4045
|
+
"license": "MIT"
|
|
4046
|
+
},
|
|
3609
4047
|
"node_modules/synchronous-promise": {
|
|
3610
4048
|
"version": "2.0.13",
|
|
3611
4049
|
"resolved": "https://registry.npmjs.org/synchronous-promise/-/synchronous-promise-2.0.13.tgz",
|
|
@@ -3627,6 +4065,24 @@
|
|
|
3627
4065
|
"node": ">=8"
|
|
3628
4066
|
}
|
|
3629
4067
|
},
|
|
4068
|
+
"node_modules/tldts": {
|
|
4069
|
+
"version": "7.0.18",
|
|
4070
|
+
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.0.18.tgz",
|
|
4071
|
+
"integrity": "sha512-lCcgTAgMxQ1JKOWrVGo6E69Ukbnx4Gc1wiYLRf6J5NN4HRYJtCby1rPF8rkQ4a6qqoFBK5dvjJ1zJ0F7VfDSvw==",
|
|
4072
|
+
"license": "MIT",
|
|
4073
|
+
"dependencies": {
|
|
4074
|
+
"tldts-core": "^7.0.18"
|
|
4075
|
+
},
|
|
4076
|
+
"bin": {
|
|
4077
|
+
"tldts": "bin/cli.js"
|
|
4078
|
+
}
|
|
4079
|
+
},
|
|
4080
|
+
"node_modules/tldts-core": {
|
|
4081
|
+
"version": "7.0.18",
|
|
4082
|
+
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.0.18.tgz",
|
|
4083
|
+
"integrity": "sha512-jqJC13oP4FFAahv4JT/0WTDrCF9Okv7lpKtOZUGPLiAnNbACcSg8Y8T+Z9xthOmRBqi/Sob4yi0TE0miRCvF7Q==",
|
|
4084
|
+
"license": "MIT"
|
|
4085
|
+
},
|
|
3630
4086
|
"node_modules/tmpl": {
|
|
3631
4087
|
"version": "1.0.5",
|
|
3632
4088
|
"resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz",
|
|
@@ -3653,6 +4109,30 @@
|
|
|
3653
4109
|
"integrity": "sha1-riF2gXXRVZ1IvvNUILL0li8JwzA=",
|
|
3654
4110
|
"license": "MIT"
|
|
3655
4111
|
},
|
|
4112
|
+
"node_modules/tough-cookie": {
|
|
4113
|
+
"version": "6.0.0",
|
|
4114
|
+
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-6.0.0.tgz",
|
|
4115
|
+
"integrity": "sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==",
|
|
4116
|
+
"license": "BSD-3-Clause",
|
|
4117
|
+
"dependencies": {
|
|
4118
|
+
"tldts": "^7.0.5"
|
|
4119
|
+
},
|
|
4120
|
+
"engines": {
|
|
4121
|
+
"node": ">=16"
|
|
4122
|
+
}
|
|
4123
|
+
},
|
|
4124
|
+
"node_modules/tr46": {
|
|
4125
|
+
"version": "6.0.0",
|
|
4126
|
+
"resolved": "https://registry.npmjs.org/tr46/-/tr46-6.0.0.tgz",
|
|
4127
|
+
"integrity": "sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw==",
|
|
4128
|
+
"license": "MIT",
|
|
4129
|
+
"dependencies": {
|
|
4130
|
+
"punycode": "^2.3.1"
|
|
4131
|
+
},
|
|
4132
|
+
"engines": {
|
|
4133
|
+
"node": ">=20"
|
|
4134
|
+
}
|
|
4135
|
+
},
|
|
3656
4136
|
"node_modules/ts-jest": {
|
|
3657
4137
|
"version": "29.3.0",
|
|
3658
4138
|
"resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.3.0.tgz",
|
|
@@ -3792,6 +4272,18 @@
|
|
|
3792
4272
|
"node": ">=10.12.0"
|
|
3793
4273
|
}
|
|
3794
4274
|
},
|
|
4275
|
+
"node_modules/w3c-xmlserializer": {
|
|
4276
|
+
"version": "5.0.0",
|
|
4277
|
+
"resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz",
|
|
4278
|
+
"integrity": "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==",
|
|
4279
|
+
"license": "MIT",
|
|
4280
|
+
"dependencies": {
|
|
4281
|
+
"xml-name-validator": "^5.0.0"
|
|
4282
|
+
},
|
|
4283
|
+
"engines": {
|
|
4284
|
+
"node": ">=18"
|
|
4285
|
+
}
|
|
4286
|
+
},
|
|
3795
4287
|
"node_modules/walker": {
|
|
3796
4288
|
"version": "1.0.8",
|
|
3797
4289
|
"resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz",
|
|
@@ -3802,6 +4294,49 @@
|
|
|
3802
4294
|
"makeerror": "1.0.12"
|
|
3803
4295
|
}
|
|
3804
4296
|
},
|
|
4297
|
+
"node_modules/webidl-conversions": {
|
|
4298
|
+
"version": "8.0.0",
|
|
4299
|
+
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-8.0.0.tgz",
|
|
4300
|
+
"integrity": "sha512-n4W4YFyz5JzOfQeA8oN7dUYpR+MBP3PIUsn2jLjWXwK5ASUzt0Jc/A5sAUZoCYFJRGF0FBKJ+1JjN43rNdsQzA==",
|
|
4301
|
+
"license": "BSD-2-Clause",
|
|
4302
|
+
"engines": {
|
|
4303
|
+
"node": ">=20"
|
|
4304
|
+
}
|
|
4305
|
+
},
|
|
4306
|
+
"node_modules/whatwg-encoding": {
|
|
4307
|
+
"version": "3.1.1",
|
|
4308
|
+
"resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz",
|
|
4309
|
+
"integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==",
|
|
4310
|
+
"license": "MIT",
|
|
4311
|
+
"dependencies": {
|
|
4312
|
+
"iconv-lite": "0.6.3"
|
|
4313
|
+
},
|
|
4314
|
+
"engines": {
|
|
4315
|
+
"node": ">=18"
|
|
4316
|
+
}
|
|
4317
|
+
},
|
|
4318
|
+
"node_modules/whatwg-mimetype": {
|
|
4319
|
+
"version": "4.0.0",
|
|
4320
|
+
"resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz",
|
|
4321
|
+
"integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==",
|
|
4322
|
+
"license": "MIT",
|
|
4323
|
+
"engines": {
|
|
4324
|
+
"node": ">=18"
|
|
4325
|
+
}
|
|
4326
|
+
},
|
|
4327
|
+
"node_modules/whatwg-url": {
|
|
4328
|
+
"version": "15.1.0",
|
|
4329
|
+
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-15.1.0.tgz",
|
|
4330
|
+
"integrity": "sha512-2ytDk0kiEj/yu90JOAp44PVPUkO9+jVhyf+SybKlRHSDlvOOZhdPIrr7xTH64l4WixO2cP+wQIcgujkGBPPz6g==",
|
|
4331
|
+
"license": "MIT",
|
|
4332
|
+
"dependencies": {
|
|
4333
|
+
"tr46": "^6.0.0",
|
|
4334
|
+
"webidl-conversions": "^8.0.0"
|
|
4335
|
+
},
|
|
4336
|
+
"engines": {
|
|
4337
|
+
"node": ">=20"
|
|
4338
|
+
}
|
|
4339
|
+
},
|
|
3805
4340
|
"node_modules/which": {
|
|
3806
4341
|
"version": "2.0.2",
|
|
3807
4342
|
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
|
@@ -3857,6 +4392,42 @@
|
|
|
3857
4392
|
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
|
|
3858
4393
|
}
|
|
3859
4394
|
},
|
|
4395
|
+
"node_modules/ws": {
|
|
4396
|
+
"version": "8.18.3",
|
|
4397
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",
|
|
4398
|
+
"integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
|
|
4399
|
+
"license": "MIT",
|
|
4400
|
+
"engines": {
|
|
4401
|
+
"node": ">=10.0.0"
|
|
4402
|
+
},
|
|
4403
|
+
"peerDependencies": {
|
|
4404
|
+
"bufferutil": "^4.0.1",
|
|
4405
|
+
"utf-8-validate": ">=5.0.2"
|
|
4406
|
+
},
|
|
4407
|
+
"peerDependenciesMeta": {
|
|
4408
|
+
"bufferutil": {
|
|
4409
|
+
"optional": true
|
|
4410
|
+
},
|
|
4411
|
+
"utf-8-validate": {
|
|
4412
|
+
"optional": true
|
|
4413
|
+
}
|
|
4414
|
+
}
|
|
4415
|
+
},
|
|
4416
|
+
"node_modules/xml-name-validator": {
|
|
4417
|
+
"version": "5.0.0",
|
|
4418
|
+
"resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz",
|
|
4419
|
+
"integrity": "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==",
|
|
4420
|
+
"license": "Apache-2.0",
|
|
4421
|
+
"engines": {
|
|
4422
|
+
"node": ">=18"
|
|
4423
|
+
}
|
|
4424
|
+
},
|
|
4425
|
+
"node_modules/xmlchars": {
|
|
4426
|
+
"version": "2.2.0",
|
|
4427
|
+
"resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
|
|
4428
|
+
"integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
|
|
4429
|
+
"license": "MIT"
|
|
4430
|
+
},
|
|
3860
4431
|
"node_modules/y18n": {
|
|
3861
4432
|
"version": "5.0.8",
|
|
3862
4433
|
"resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
|
|
@@ -3936,6 +4507,11 @@
|
|
|
3936
4507
|
}
|
|
3937
4508
|
},
|
|
3938
4509
|
"dependencies": {
|
|
4510
|
+
"@acemir/cssom": {
|
|
4511
|
+
"version": "0.9.23",
|
|
4512
|
+
"resolved": "https://registry.npmjs.org/@acemir/cssom/-/cssom-0.9.23.tgz",
|
|
4513
|
+
"integrity": "sha512-2kJ1HxBKzPLbmhZpxBiTZggjtgCwKg1ma5RHShxvd6zgqhDEdEkzpiwe7jLkI2p2BrZvFCXIihdoMkl1H39VnA=="
|
|
4514
|
+
},
|
|
3939
4515
|
"@ampproject/remapping": {
|
|
3940
4516
|
"version": "2.3.0",
|
|
3941
4517
|
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
|
|
@@ -3946,6 +4522,49 @@
|
|
|
3946
4522
|
"@jridgewell/trace-mapping": "^0.3.24"
|
|
3947
4523
|
}
|
|
3948
4524
|
},
|
|
4525
|
+
"@asamuzakjp/css-color": {
|
|
4526
|
+
"version": "4.0.5",
|
|
4527
|
+
"resolved": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-4.0.5.tgz",
|
|
4528
|
+
"integrity": "sha512-lMrXidNhPGsDjytDy11Vwlb6OIGrT3CmLg3VWNFyWkLWtijKl7xjvForlh8vuj0SHGjgl4qZEQzUmYTeQA2JFQ==",
|
|
4529
|
+
"requires": {
|
|
4530
|
+
"@csstools/css-calc": "^2.1.4",
|
|
4531
|
+
"@csstools/css-color-parser": "^3.1.0",
|
|
4532
|
+
"@csstools/css-parser-algorithms": "^3.0.5",
|
|
4533
|
+
"@csstools/css-tokenizer": "^3.0.4",
|
|
4534
|
+
"lru-cache": "^11.2.1"
|
|
4535
|
+
},
|
|
4536
|
+
"dependencies": {
|
|
4537
|
+
"lru-cache": {
|
|
4538
|
+
"version": "11.2.2",
|
|
4539
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.2.tgz",
|
|
4540
|
+
"integrity": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg=="
|
|
4541
|
+
}
|
|
4542
|
+
}
|
|
4543
|
+
},
|
|
4544
|
+
"@asamuzakjp/dom-selector": {
|
|
4545
|
+
"version": "6.7.4",
|
|
4546
|
+
"resolved": "https://registry.npmjs.org/@asamuzakjp/dom-selector/-/dom-selector-6.7.4.tgz",
|
|
4547
|
+
"integrity": "sha512-buQDjkm+wDPXd6c13534URWZqbz0RP5PAhXZ+LIoa5LgwInT9HVJvGIJivg75vi8I13CxDGdTnz+aY5YUJlIAA==",
|
|
4548
|
+
"requires": {
|
|
4549
|
+
"@asamuzakjp/nwsapi": "^2.3.9",
|
|
4550
|
+
"bidi-js": "^1.0.3",
|
|
4551
|
+
"css-tree": "^3.1.0",
|
|
4552
|
+
"is-potential-custom-element-name": "^1.0.1",
|
|
4553
|
+
"lru-cache": "^11.2.2"
|
|
4554
|
+
},
|
|
4555
|
+
"dependencies": {
|
|
4556
|
+
"lru-cache": {
|
|
4557
|
+
"version": "11.2.2",
|
|
4558
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.2.tgz",
|
|
4559
|
+
"integrity": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg=="
|
|
4560
|
+
}
|
|
4561
|
+
}
|
|
4562
|
+
},
|
|
4563
|
+
"@asamuzakjp/nwsapi": {
|
|
4564
|
+
"version": "2.3.9",
|
|
4565
|
+
"resolved": "https://registry.npmjs.org/@asamuzakjp/nwsapi/-/nwsapi-2.3.9.tgz",
|
|
4566
|
+
"integrity": "sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q=="
|
|
4567
|
+
},
|
|
3949
4568
|
"@babel/code-frame": {
|
|
3950
4569
|
"version": "7.26.2",
|
|
3951
4570
|
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
|
|
@@ -4295,6 +4914,42 @@
|
|
|
4295
4914
|
"integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
|
|
4296
4915
|
"dev": true
|
|
4297
4916
|
},
|
|
4917
|
+
"@csstools/color-helpers": {
|
|
4918
|
+
"version": "5.1.0",
|
|
4919
|
+
"resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.1.0.tgz",
|
|
4920
|
+
"integrity": "sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA=="
|
|
4921
|
+
},
|
|
4922
|
+
"@csstools/css-calc": {
|
|
4923
|
+
"version": "2.1.4",
|
|
4924
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.4.tgz",
|
|
4925
|
+
"integrity": "sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==",
|
|
4926
|
+
"requires": {}
|
|
4927
|
+
},
|
|
4928
|
+
"@csstools/css-color-parser": {
|
|
4929
|
+
"version": "3.1.0",
|
|
4930
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz",
|
|
4931
|
+
"integrity": "sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==",
|
|
4932
|
+
"requires": {
|
|
4933
|
+
"@csstools/color-helpers": "^5.1.0",
|
|
4934
|
+
"@csstools/css-calc": "^2.1.4"
|
|
4935
|
+
}
|
|
4936
|
+
},
|
|
4937
|
+
"@csstools/css-parser-algorithms": {
|
|
4938
|
+
"version": "3.0.5",
|
|
4939
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz",
|
|
4940
|
+
"integrity": "sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==",
|
|
4941
|
+
"requires": {}
|
|
4942
|
+
},
|
|
4943
|
+
"@csstools/css-syntax-patches-for-csstree": {
|
|
4944
|
+
"version": "1.0.16",
|
|
4945
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-syntax-patches-for-csstree/-/css-syntax-patches-for-csstree-1.0.16.tgz",
|
|
4946
|
+
"integrity": "sha512-2SpS4/UaWQaGpBINyG5ZuCHnUDeVByOhvbkARwfmnfxDvTaj80yOI1cD8Tw93ICV5Fx4fnyDKWQZI1CDtcWyUg=="
|
|
4947
|
+
},
|
|
4948
|
+
"@csstools/css-tokenizer": {
|
|
4949
|
+
"version": "3.0.4",
|
|
4950
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz",
|
|
4951
|
+
"integrity": "sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw=="
|
|
4952
|
+
},
|
|
4298
4953
|
"@istanbuljs/load-nyc-config": {
|
|
4299
4954
|
"version": "1.1.0",
|
|
4300
4955
|
"resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
|
|
@@ -4731,6 +5386,11 @@
|
|
|
4731
5386
|
"integrity": "sha512-Ynb/CjHhE/Xp/4bhHmQC4U1Ox+I2OpfRYF3dnNgQqn1cHa6LK3H1wJMNPT02tSVZA6FYuXE2ITORfbnb6zBCSA==",
|
|
4732
5387
|
"dev": true
|
|
4733
5388
|
},
|
|
5389
|
+
"agent-base": {
|
|
5390
|
+
"version": "7.1.4",
|
|
5391
|
+
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
|
|
5392
|
+
"integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ=="
|
|
5393
|
+
},
|
|
4734
5394
|
"ansi-escapes": {
|
|
4735
5395
|
"version": "4.3.2",
|
|
4736
5396
|
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
|
|
@@ -4888,6 +5548,14 @@
|
|
|
4888
5548
|
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
4889
5549
|
"dev": true
|
|
4890
5550
|
},
|
|
5551
|
+
"bidi-js": {
|
|
5552
|
+
"version": "1.0.3",
|
|
5553
|
+
"resolved": "https://registry.npmjs.org/bidi-js/-/bidi-js-1.0.3.tgz",
|
|
5554
|
+
"integrity": "sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==",
|
|
5555
|
+
"requires": {
|
|
5556
|
+
"require-from-string": "^2.0.2"
|
|
5557
|
+
}
|
|
5558
|
+
},
|
|
4891
5559
|
"brace-expansion": {
|
|
4892
5560
|
"version": "1.1.11",
|
|
4893
5561
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
|
|
@@ -5065,15 +5733,57 @@
|
|
|
5065
5733
|
"which": "^2.0.1"
|
|
5066
5734
|
}
|
|
5067
5735
|
},
|
|
5736
|
+
"css-tree": {
|
|
5737
|
+
"version": "3.1.0",
|
|
5738
|
+
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz",
|
|
5739
|
+
"integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==",
|
|
5740
|
+
"requires": {
|
|
5741
|
+
"mdn-data": "2.12.2",
|
|
5742
|
+
"source-map-js": "^1.0.1"
|
|
5743
|
+
}
|
|
5744
|
+
},
|
|
5745
|
+
"cssstyle": {
|
|
5746
|
+
"version": "5.3.3",
|
|
5747
|
+
"resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-5.3.3.tgz",
|
|
5748
|
+
"integrity": "sha512-OytmFH+13/QXONJcC75QNdMtKpceNk3u8ThBjyyYjkEcy/ekBwR1mMAuNvi3gdBPW3N5TlCzQ0WZw8H0lN/bDw==",
|
|
5749
|
+
"requires": {
|
|
5750
|
+
"@asamuzakjp/css-color": "^4.0.3",
|
|
5751
|
+
"@csstools/css-syntax-patches-for-csstree": "^1.0.14",
|
|
5752
|
+
"css-tree": "^3.1.0"
|
|
5753
|
+
}
|
|
5754
|
+
},
|
|
5755
|
+
"csv-parse": {
|
|
5756
|
+
"version": "6.1.0",
|
|
5757
|
+
"resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-6.1.0.tgz",
|
|
5758
|
+
"integrity": "sha512-CEE+jwpgLn+MmtCpVcPtiCZpVtB6Z2OKPTr34pycYYoL7sxdOkXDdQ4lRiw6ioC0q6BLqhc6cKweCVvral8yhw=="
|
|
5759
|
+
},
|
|
5760
|
+
"csv-stringify": {
|
|
5761
|
+
"version": "6.6.0",
|
|
5762
|
+
"resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-6.6.0.tgz",
|
|
5763
|
+
"integrity": "sha512-YW32lKOmIBgbxtu3g5SaiqWNwa/9ISQt2EcgOq0+RAIFufFp9is6tqNnKahqE5kuKvrnYAzs28r+s6pXJR8Vcw=="
|
|
5764
|
+
},
|
|
5765
|
+
"data-urls": {
|
|
5766
|
+
"version": "6.0.0",
|
|
5767
|
+
"resolved": "https://registry.npmjs.org/data-urls/-/data-urls-6.0.0.tgz",
|
|
5768
|
+
"integrity": "sha512-BnBS08aLUM+DKamupXs3w2tJJoqU+AkaE/+6vQxi/G/DPmIZFJJp9Dkb1kM03AZx8ADehDUZgsNxju3mPXZYIA==",
|
|
5769
|
+
"requires": {
|
|
5770
|
+
"whatwg-mimetype": "^4.0.0",
|
|
5771
|
+
"whatwg-url": "^15.0.0"
|
|
5772
|
+
}
|
|
5773
|
+
},
|
|
5068
5774
|
"debug": {
|
|
5069
5775
|
"version": "4.4.0",
|
|
5070
5776
|
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
|
|
5071
5777
|
"integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
|
|
5072
|
-
"dev": true,
|
|
5073
5778
|
"requires": {
|
|
5074
5779
|
"ms": "^2.1.3"
|
|
5075
5780
|
}
|
|
5076
5781
|
},
|
|
5782
|
+
"decimal.js": {
|
|
5783
|
+
"version": "10.6.0",
|
|
5784
|
+
"resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz",
|
|
5785
|
+
"integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg=="
|
|
5786
|
+
},
|
|
5077
5787
|
"dedent": {
|
|
5078
5788
|
"version": "1.5.3",
|
|
5079
5789
|
"resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz",
|
|
@@ -5126,6 +5836,11 @@
|
|
|
5126
5836
|
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
5127
5837
|
"dev": true
|
|
5128
5838
|
},
|
|
5839
|
+
"entities": {
|
|
5840
|
+
"version": "6.0.1",
|
|
5841
|
+
"resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
|
|
5842
|
+
"integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g=="
|
|
5843
|
+
},
|
|
5129
5844
|
"error-ex": {
|
|
5130
5845
|
"version": "1.3.2",
|
|
5131
5846
|
"resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
|
|
@@ -5341,18 +6056,52 @@
|
|
|
5341
6056
|
"function-bind": "^1.1.2"
|
|
5342
6057
|
}
|
|
5343
6058
|
},
|
|
6059
|
+
"html-encoding-sniffer": {
|
|
6060
|
+
"version": "4.0.0",
|
|
6061
|
+
"resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz",
|
|
6062
|
+
"integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==",
|
|
6063
|
+
"requires": {
|
|
6064
|
+
"whatwg-encoding": "^3.1.1"
|
|
6065
|
+
}
|
|
6066
|
+
},
|
|
5344
6067
|
"html-escaper": {
|
|
5345
6068
|
"version": "2.0.2",
|
|
5346
6069
|
"resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
|
|
5347
6070
|
"integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
|
|
5348
6071
|
"dev": true
|
|
5349
6072
|
},
|
|
6073
|
+
"http-proxy-agent": {
|
|
6074
|
+
"version": "7.0.2",
|
|
6075
|
+
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
|
|
6076
|
+
"integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
|
|
6077
|
+
"requires": {
|
|
6078
|
+
"agent-base": "^7.1.0",
|
|
6079
|
+
"debug": "^4.3.4"
|
|
6080
|
+
}
|
|
6081
|
+
},
|
|
6082
|
+
"https-proxy-agent": {
|
|
6083
|
+
"version": "7.0.6",
|
|
6084
|
+
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
|
|
6085
|
+
"integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
|
|
6086
|
+
"requires": {
|
|
6087
|
+
"agent-base": "^7.1.2",
|
|
6088
|
+
"debug": "4"
|
|
6089
|
+
}
|
|
6090
|
+
},
|
|
5350
6091
|
"human-signals": {
|
|
5351
6092
|
"version": "2.1.0",
|
|
5352
6093
|
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
|
|
5353
6094
|
"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
|
|
5354
6095
|
"dev": true
|
|
5355
6096
|
},
|
|
6097
|
+
"iconv-lite": {
|
|
6098
|
+
"version": "0.6.3",
|
|
6099
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
|
|
6100
|
+
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
|
|
6101
|
+
"requires": {
|
|
6102
|
+
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
6103
|
+
}
|
|
6104
|
+
},
|
|
5356
6105
|
"import-local": {
|
|
5357
6106
|
"version": "3.2.0",
|
|
5358
6107
|
"resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz",
|
|
@@ -5418,6 +6167,11 @@
|
|
|
5418
6167
|
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
|
5419
6168
|
"dev": true
|
|
5420
6169
|
},
|
|
6170
|
+
"is-potential-custom-element-name": {
|
|
6171
|
+
"version": "1.0.1",
|
|
6172
|
+
"resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
|
|
6173
|
+
"integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ=="
|
|
6174
|
+
},
|
|
5421
6175
|
"is-stream": {
|
|
5422
6176
|
"version": "2.0.1",
|
|
5423
6177
|
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
|
|
@@ -5927,6 +6681,33 @@
|
|
|
5927
6681
|
"esprima": "^4.0.0"
|
|
5928
6682
|
}
|
|
5929
6683
|
},
|
|
6684
|
+
"jsdom": {
|
|
6685
|
+
"version": "27.2.0",
|
|
6686
|
+
"resolved": "https://registry.npmjs.org/jsdom/-/jsdom-27.2.0.tgz",
|
|
6687
|
+
"integrity": "sha512-454TI39PeRDW1LgpyLPyURtB4Zx1tklSr6+OFOipsxGUH1WMTvk6C65JQdrj455+DP2uJ1+veBEHTGFKWVLFoA==",
|
|
6688
|
+
"requires": {
|
|
6689
|
+
"@acemir/cssom": "^0.9.23",
|
|
6690
|
+
"@asamuzakjp/dom-selector": "^6.7.4",
|
|
6691
|
+
"cssstyle": "^5.3.3",
|
|
6692
|
+
"data-urls": "^6.0.0",
|
|
6693
|
+
"decimal.js": "^10.6.0",
|
|
6694
|
+
"html-encoding-sniffer": "^4.0.0",
|
|
6695
|
+
"http-proxy-agent": "^7.0.2",
|
|
6696
|
+
"https-proxy-agent": "^7.0.6",
|
|
6697
|
+
"is-potential-custom-element-name": "^1.0.1",
|
|
6698
|
+
"parse5": "^8.0.0",
|
|
6699
|
+
"saxes": "^6.0.0",
|
|
6700
|
+
"symbol-tree": "^3.2.4",
|
|
6701
|
+
"tough-cookie": "^6.0.0",
|
|
6702
|
+
"w3c-xmlserializer": "^5.0.0",
|
|
6703
|
+
"webidl-conversions": "^8.0.0",
|
|
6704
|
+
"whatwg-encoding": "^3.1.1",
|
|
6705
|
+
"whatwg-mimetype": "^4.0.0",
|
|
6706
|
+
"whatwg-url": "^15.1.0",
|
|
6707
|
+
"ws": "^8.18.3",
|
|
6708
|
+
"xml-name-validator": "^5.0.0"
|
|
6709
|
+
}
|
|
6710
|
+
},
|
|
5930
6711
|
"jsesc": {
|
|
5931
6712
|
"version": "3.1.0",
|
|
5932
6713
|
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
|
|
@@ -6021,6 +6802,11 @@
|
|
|
6021
6802
|
"tmpl": "1.0.5"
|
|
6022
6803
|
}
|
|
6023
6804
|
},
|
|
6805
|
+
"mdn-data": {
|
|
6806
|
+
"version": "2.12.2",
|
|
6807
|
+
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz",
|
|
6808
|
+
"integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA=="
|
|
6809
|
+
},
|
|
6024
6810
|
"merge-stream": {
|
|
6025
6811
|
"version": "2.0.0",
|
|
6026
6812
|
"resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
|
|
@@ -6055,8 +6841,7 @@
|
|
|
6055
6841
|
"ms": {
|
|
6056
6842
|
"version": "2.1.3",
|
|
6057
6843
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
6058
|
-
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
|
|
6059
|
-
"dev": true
|
|
6844
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
|
|
6060
6845
|
},
|
|
6061
6846
|
"natural-compare": {
|
|
6062
6847
|
"version": "1.4.0",
|
|
@@ -6156,6 +6941,14 @@
|
|
|
6156
6941
|
"lines-and-columns": "^1.1.6"
|
|
6157
6942
|
}
|
|
6158
6943
|
},
|
|
6944
|
+
"parse5": {
|
|
6945
|
+
"version": "8.0.0",
|
|
6946
|
+
"resolved": "https://registry.npmjs.org/parse5/-/parse5-8.0.0.tgz",
|
|
6947
|
+
"integrity": "sha512-9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==",
|
|
6948
|
+
"requires": {
|
|
6949
|
+
"entities": "^6.0.0"
|
|
6950
|
+
}
|
|
6951
|
+
},
|
|
6159
6952
|
"path-exists": {
|
|
6160
6953
|
"version": "4.0.0",
|
|
6161
6954
|
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
|
|
@@ -6241,6 +7034,11 @@
|
|
|
6241
7034
|
"resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.4.tgz",
|
|
6242
7035
|
"integrity": "sha512-sFPkHQjVKheDNnPvotjQmm3KD3uk1fWKUN7CrpdbwmUx3CrG3QiM8QpTSimvig5vTXmTvjz7+TDvXOI9+4rkcg=="
|
|
6243
7036
|
},
|
|
7037
|
+
"punycode": {
|
|
7038
|
+
"version": "2.3.1",
|
|
7039
|
+
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
|
|
7040
|
+
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg=="
|
|
7041
|
+
},
|
|
6244
7042
|
"pure-rand": {
|
|
6245
7043
|
"version": "6.1.0",
|
|
6246
7044
|
"resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz",
|
|
@@ -6264,6 +7062,11 @@
|
|
|
6264
7062
|
"integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
|
|
6265
7063
|
"dev": true
|
|
6266
7064
|
},
|
|
7065
|
+
"require-from-string": {
|
|
7066
|
+
"version": "2.0.2",
|
|
7067
|
+
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
|
|
7068
|
+
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="
|
|
7069
|
+
},
|
|
6267
7070
|
"resolve": {
|
|
6268
7071
|
"version": "1.22.10",
|
|
6269
7072
|
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz",
|
|
@@ -6296,6 +7099,19 @@
|
|
|
6296
7099
|
"integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==",
|
|
6297
7100
|
"dev": true
|
|
6298
7101
|
},
|
|
7102
|
+
"safer-buffer": {
|
|
7103
|
+
"version": "2.1.2",
|
|
7104
|
+
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
|
7105
|
+
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
|
|
7106
|
+
},
|
|
7107
|
+
"saxes": {
|
|
7108
|
+
"version": "6.0.0",
|
|
7109
|
+
"resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz",
|
|
7110
|
+
"integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==",
|
|
7111
|
+
"requires": {
|
|
7112
|
+
"xmlchars": "^2.2.0"
|
|
7113
|
+
}
|
|
7114
|
+
},
|
|
6299
7115
|
"seedrandom": {
|
|
6300
7116
|
"version": "3.0.5",
|
|
6301
7117
|
"resolved": "https://registry.npmjs.org/seedrandom/-/seedrandom-3.0.5.tgz",
|
|
@@ -6346,6 +7162,11 @@
|
|
|
6346
7162
|
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
|
6347
7163
|
"dev": true
|
|
6348
7164
|
},
|
|
7165
|
+
"source-map-js": {
|
|
7166
|
+
"version": "1.2.1",
|
|
7167
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
7168
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="
|
|
7169
|
+
},
|
|
6349
7170
|
"source-map-support": {
|
|
6350
7171
|
"version": "0.5.13",
|
|
6351
7172
|
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz",
|
|
@@ -6434,6 +7255,11 @@
|
|
|
6434
7255
|
"integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
|
|
6435
7256
|
"dev": true
|
|
6436
7257
|
},
|
|
7258
|
+
"symbol-tree": {
|
|
7259
|
+
"version": "3.2.4",
|
|
7260
|
+
"resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
|
|
7261
|
+
"integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="
|
|
7262
|
+
},
|
|
6437
7263
|
"synchronous-promise": {
|
|
6438
7264
|
"version": "2.0.13",
|
|
6439
7265
|
"resolved": "https://registry.npmjs.org/synchronous-promise/-/synchronous-promise-2.0.13.tgz",
|
|
@@ -6450,6 +7276,19 @@
|
|
|
6450
7276
|
"minimatch": "^3.0.4"
|
|
6451
7277
|
}
|
|
6452
7278
|
},
|
|
7279
|
+
"tldts": {
|
|
7280
|
+
"version": "7.0.18",
|
|
7281
|
+
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.0.18.tgz",
|
|
7282
|
+
"integrity": "sha512-lCcgTAgMxQ1JKOWrVGo6E69Ukbnx4Gc1wiYLRf6J5NN4HRYJtCby1rPF8rkQ4a6qqoFBK5dvjJ1zJ0F7VfDSvw==",
|
|
7283
|
+
"requires": {
|
|
7284
|
+
"tldts-core": "^7.0.18"
|
|
7285
|
+
}
|
|
7286
|
+
},
|
|
7287
|
+
"tldts-core": {
|
|
7288
|
+
"version": "7.0.18",
|
|
7289
|
+
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.0.18.tgz",
|
|
7290
|
+
"integrity": "sha512-jqJC13oP4FFAahv4JT/0WTDrCF9Okv7lpKtOZUGPLiAnNbACcSg8Y8T+Z9xthOmRBqi/Sob4yi0TE0miRCvF7Q=="
|
|
7291
|
+
},
|
|
6453
7292
|
"tmpl": {
|
|
6454
7293
|
"version": "1.0.5",
|
|
6455
7294
|
"resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz",
|
|
@@ -6470,6 +7309,22 @@
|
|
|
6470
7309
|
"resolved": "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz",
|
|
6471
7310
|
"integrity": "sha1-riF2gXXRVZ1IvvNUILL0li8JwzA="
|
|
6472
7311
|
},
|
|
7312
|
+
"tough-cookie": {
|
|
7313
|
+
"version": "6.0.0",
|
|
7314
|
+
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-6.0.0.tgz",
|
|
7315
|
+
"integrity": "sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==",
|
|
7316
|
+
"requires": {
|
|
7317
|
+
"tldts": "^7.0.5"
|
|
7318
|
+
}
|
|
7319
|
+
},
|
|
7320
|
+
"tr46": {
|
|
7321
|
+
"version": "6.0.0",
|
|
7322
|
+
"resolved": "https://registry.npmjs.org/tr46/-/tr46-6.0.0.tgz",
|
|
7323
|
+
"integrity": "sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw==",
|
|
7324
|
+
"requires": {
|
|
7325
|
+
"punycode": "^2.3.1"
|
|
7326
|
+
}
|
|
7327
|
+
},
|
|
6473
7328
|
"ts-jest": {
|
|
6474
7329
|
"version": "29.3.0",
|
|
6475
7330
|
"resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.3.0.tgz",
|
|
@@ -6533,6 +7388,14 @@
|
|
|
6533
7388
|
"convert-source-map": "^2.0.0"
|
|
6534
7389
|
}
|
|
6535
7390
|
},
|
|
7391
|
+
"w3c-xmlserializer": {
|
|
7392
|
+
"version": "5.0.0",
|
|
7393
|
+
"resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz",
|
|
7394
|
+
"integrity": "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==",
|
|
7395
|
+
"requires": {
|
|
7396
|
+
"xml-name-validator": "^5.0.0"
|
|
7397
|
+
}
|
|
7398
|
+
},
|
|
6536
7399
|
"walker": {
|
|
6537
7400
|
"version": "1.0.8",
|
|
6538
7401
|
"resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz",
|
|
@@ -6542,6 +7405,33 @@
|
|
|
6542
7405
|
"makeerror": "1.0.12"
|
|
6543
7406
|
}
|
|
6544
7407
|
},
|
|
7408
|
+
"webidl-conversions": {
|
|
7409
|
+
"version": "8.0.0",
|
|
7410
|
+
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-8.0.0.tgz",
|
|
7411
|
+
"integrity": "sha512-n4W4YFyz5JzOfQeA8oN7dUYpR+MBP3PIUsn2jLjWXwK5ASUzt0Jc/A5sAUZoCYFJRGF0FBKJ+1JjN43rNdsQzA=="
|
|
7412
|
+
},
|
|
7413
|
+
"whatwg-encoding": {
|
|
7414
|
+
"version": "3.1.1",
|
|
7415
|
+
"resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz",
|
|
7416
|
+
"integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==",
|
|
7417
|
+
"requires": {
|
|
7418
|
+
"iconv-lite": "0.6.3"
|
|
7419
|
+
}
|
|
7420
|
+
},
|
|
7421
|
+
"whatwg-mimetype": {
|
|
7422
|
+
"version": "4.0.0",
|
|
7423
|
+
"resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz",
|
|
7424
|
+
"integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg=="
|
|
7425
|
+
},
|
|
7426
|
+
"whatwg-url": {
|
|
7427
|
+
"version": "15.1.0",
|
|
7428
|
+
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-15.1.0.tgz",
|
|
7429
|
+
"integrity": "sha512-2ytDk0kiEj/yu90JOAp44PVPUkO9+jVhyf+SybKlRHSDlvOOZhdPIrr7xTH64l4WixO2cP+wQIcgujkGBPPz6g==",
|
|
7430
|
+
"requires": {
|
|
7431
|
+
"tr46": "^6.0.0",
|
|
7432
|
+
"webidl-conversions": "^8.0.0"
|
|
7433
|
+
}
|
|
7434
|
+
},
|
|
6545
7435
|
"which": {
|
|
6546
7436
|
"version": "2.0.2",
|
|
6547
7437
|
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
|
@@ -6578,6 +7468,22 @@
|
|
|
6578
7468
|
"signal-exit": "^3.0.7"
|
|
6579
7469
|
}
|
|
6580
7470
|
},
|
|
7471
|
+
"ws": {
|
|
7472
|
+
"version": "8.18.3",
|
|
7473
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",
|
|
7474
|
+
"integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
|
|
7475
|
+
"requires": {}
|
|
7476
|
+
},
|
|
7477
|
+
"xml-name-validator": {
|
|
7478
|
+
"version": "5.0.0",
|
|
7479
|
+
"resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz",
|
|
7480
|
+
"integrity": "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg=="
|
|
7481
|
+
},
|
|
7482
|
+
"xmlchars": {
|
|
7483
|
+
"version": "2.2.0",
|
|
7484
|
+
"resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
|
|
7485
|
+
"integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw=="
|
|
7486
|
+
},
|
|
6581
7487
|
"y18n": {
|
|
6582
7488
|
"version": "5.0.8",
|
|
6583
7489
|
"resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
|