@wavemaker-ai/react-codegen 1.0.0-rc.326 → 1.0.0-rc.330
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/dist/transpiler/index.mjs +104 -58
- package/dist/transpiler/index.mjs.map +1 -1
- package/dist/transpiler/wm-styles.css +3 -0
- package/package-lock.json +122 -606
- package/package.json +7 -23
- package/src/app.generator.js +1 -0
- package/src/app.generator.js.map +1 -1
- package/src/gen-app-override-css.js +13 -4
- package/src/gen-app-override-css.js.map +1 -1
- package/src/transpile/bind.ex.transformer.js +42 -14
- package/src/transpile/bind.ex.transformer.js.map +1 -1
- package/src/transpile/components/container/wizardaction.transformer.js +1 -1
- package/src/transpile/components/container/wizardaction.transformer.js.map +1 -1
- package/src/transpile/components/container/wizardstep.transformer.js +1 -1
- package/src/transpile/components/container/wizardstep.transformer.js.map +1 -1
- package/src/transpile/components/data/form/form-field.transformer.js +16 -1
- package/src/transpile/components/data/form/form-field.transformer.js.map +1 -1
- package/src/transpile/components/data/live-filter-field.transformer.js +13 -1
- package/src/transpile/components/data/live-filter-field.transformer.js.map +1 -1
- package/src/transpile/components/dialogs/dialog.transformer.js +15 -8
- package/src/transpile/components/dialogs/dialog.transformer.js.map +1 -1
- package/src/transpile/components/transform-register.js +1 -0
- package/src/transpile/components/transform-register.js.map +1 -1
- package/src/transpile/components/wmx-component/wmx-component.transformer.js +12 -15
- package/src/transpile/components/wmx-component/wmx-component.transformer.js.map +1 -1
- package/src/transpile/style.transformer.js +6 -1
- package/src/transpile/style.transformer.js.map +1 -1
- package/src/transpile/transpile.js +1 -1
- package/src/transpile/transpile.js.map +1 -1
- package/src/transpile/widget-inline-style-processor.js +5 -1
- package/src/transpile/widget-inline-style-processor.js.map +1 -1
- package/src/utils.browser.js +5 -4
- package/src/utils.browser.js.map +1 -1
- package/src/utils.js +14 -4
- package/src/utils.js.map +1 -1
- package/src/wmx.generator.js +4 -26
- package/src/wmx.generator.js.map +1 -1
- package/templates/component/app.template.hbs +8 -0
- package/templates/project/app/components.css +3 -0
- package/templates/project/package.json +4 -4
package/package-lock.json
CHANGED
|
@@ -1,35 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker-ai/react-codegen",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.330",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker-ai/react-codegen",
|
|
9
|
-
"version": "1.0.0-rc.
|
|
9
|
+
"version": "1.0.0-rc.330",
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@angular/compiler": "12.2.1",
|
|
13
|
-
"@babel/generator": "7.13.9",
|
|
14
13
|
"@babel/parser": "7.13.11",
|
|
15
|
-
"@babel/traverse": "7.13.0",
|
|
16
|
-
"@types/lodash": "4.14.191",
|
|
17
|
-
"@types/node": "18.11.10",
|
|
18
|
-
"@types/prettier": "2.7.1",
|
|
19
|
-
"@types/yargs": "17.0.15",
|
|
20
|
-
"adm-zip": "0.5.9",
|
|
21
14
|
"archiver": "7.0.1",
|
|
22
|
-
"clean-css": "5.1.5",
|
|
23
|
-
"color": "4.2.3",
|
|
24
|
-
"css-tree": "2.1.0",
|
|
25
15
|
"execa": "5.0.0",
|
|
26
16
|
"fs-extra": "9.1.0",
|
|
27
17
|
"handlebars": "4.7.7",
|
|
28
18
|
"html-entities": "2.3.2",
|
|
29
|
-
"less": "4.1.1",
|
|
30
19
|
"lodash": "4.17.21",
|
|
31
20
|
"node-html-parser": "5.0.0",
|
|
32
21
|
"rimraf": "3.0.2",
|
|
22
|
+
"semver": "7.5.0",
|
|
33
23
|
"xml2js": "0.6.2",
|
|
34
24
|
"yargs": "16.2.0"
|
|
35
25
|
},
|
|
@@ -37,23 +27,17 @@
|
|
|
37
27
|
"wm-react-codegen": "index.js"
|
|
38
28
|
},
|
|
39
29
|
"devDependencies": {
|
|
40
|
-
"@types/adm-zip": "0.5.0",
|
|
41
|
-
"@types/babel__generator": "7.6.4",
|
|
42
|
-
"@types/babel__parser": "7.1.1",
|
|
43
|
-
"@types/babel__traverse": "7.18.3",
|
|
44
|
-
"@types/clean-css": "4.2.6",
|
|
45
|
-
"@types/color": "3.0.3",
|
|
46
|
-
"@types/css-tree": "2.0.0",
|
|
47
30
|
"@types/fs-extra": "9.0.13",
|
|
48
|
-
"@types/
|
|
31
|
+
"@types/lodash": "4.14.191",
|
|
32
|
+
"@types/node": "18.11.10",
|
|
49
33
|
"@types/rimraf": "3.0.2",
|
|
50
34
|
"@types/semver": "7.3.13",
|
|
51
35
|
"@types/xml2js": "0.4.14",
|
|
36
|
+
"@types/yargs": "17.0.15",
|
|
52
37
|
"@vitest/coverage-v8": "2.1.9",
|
|
53
38
|
"husky": "9.1.7",
|
|
54
39
|
"lint-staged": "16.2.0",
|
|
55
40
|
"prettier": "3.4.2",
|
|
56
|
-
"semver": "7.5.0",
|
|
57
41
|
"tsup": "8.5.1",
|
|
58
42
|
"typescript": "5",
|
|
59
43
|
"vitest": "2.1.9"
|
|
@@ -86,55 +70,10 @@
|
|
|
86
70
|
"node": "^12.14.1 || >=14.0.0"
|
|
87
71
|
}
|
|
88
72
|
},
|
|
89
|
-
"node_modules/@babel/code-frame": {
|
|
90
|
-
"version": "7.29.7",
|
|
91
|
-
"integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
|
|
92
|
-
"license": "MIT",
|
|
93
|
-
"dependencies": {
|
|
94
|
-
"@babel/helper-validator-identifier": "^7.29.7",
|
|
95
|
-
"js-tokens": "^4.0.0",
|
|
96
|
-
"picocolors": "^1.1.1"
|
|
97
|
-
},
|
|
98
|
-
"engines": {
|
|
99
|
-
"node": ">=6.9.0"
|
|
100
|
-
}
|
|
101
|
-
},
|
|
102
|
-
"node_modules/@babel/generator": {
|
|
103
|
-
"version": "7.13.9",
|
|
104
|
-
"integrity": "sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw==",
|
|
105
|
-
"license": "MIT",
|
|
106
|
-
"dependencies": {
|
|
107
|
-
"@babel/types": "^7.13.0",
|
|
108
|
-
"jsesc": "^2.5.1",
|
|
109
|
-
"source-map": "^0.5.0"
|
|
110
|
-
}
|
|
111
|
-
},
|
|
112
|
-
"node_modules/@babel/helper-function-name": {
|
|
113
|
-
"version": "7.24.7",
|
|
114
|
-
"integrity": "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==",
|
|
115
|
-
"license": "MIT",
|
|
116
|
-
"dependencies": {
|
|
117
|
-
"@babel/template": "^7.24.7",
|
|
118
|
-
"@babel/types": "^7.24.7"
|
|
119
|
-
},
|
|
120
|
-
"engines": {
|
|
121
|
-
"node": ">=6.9.0"
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
|
-
"node_modules/@babel/helper-split-export-declaration": {
|
|
125
|
-
"version": "7.24.7",
|
|
126
|
-
"integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==",
|
|
127
|
-
"license": "MIT",
|
|
128
|
-
"dependencies": {
|
|
129
|
-
"@babel/types": "^7.24.7"
|
|
130
|
-
},
|
|
131
|
-
"engines": {
|
|
132
|
-
"node": ">=6.9.0"
|
|
133
|
-
}
|
|
134
|
-
},
|
|
135
73
|
"node_modules/@babel/helper-string-parser": {
|
|
136
74
|
"version": "7.29.7",
|
|
137
75
|
"integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
|
|
76
|
+
"dev": true,
|
|
138
77
|
"license": "MIT",
|
|
139
78
|
"engines": {
|
|
140
79
|
"node": ">=6.9.0"
|
|
@@ -143,6 +82,7 @@
|
|
|
143
82
|
"node_modules/@babel/helper-validator-identifier": {
|
|
144
83
|
"version": "7.29.7",
|
|
145
84
|
"integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
|
|
85
|
+
"dev": true,
|
|
146
86
|
"license": "MIT",
|
|
147
87
|
"engines": {
|
|
148
88
|
"node": ">=6.9.0"
|
|
@@ -159,52 +99,10 @@
|
|
|
159
99
|
"node": ">=6.0.0"
|
|
160
100
|
}
|
|
161
101
|
},
|
|
162
|
-
"node_modules/@babel/template": {
|
|
163
|
-
"version": "7.29.7",
|
|
164
|
-
"integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==",
|
|
165
|
-
"license": "MIT",
|
|
166
|
-
"dependencies": {
|
|
167
|
-
"@babel/code-frame": "^7.29.7",
|
|
168
|
-
"@babel/parser": "^7.29.7",
|
|
169
|
-
"@babel/types": "^7.29.7"
|
|
170
|
-
},
|
|
171
|
-
"engines": {
|
|
172
|
-
"node": ">=6.9.0"
|
|
173
|
-
}
|
|
174
|
-
},
|
|
175
|
-
"node_modules/@babel/template/node_modules/@babel/parser": {
|
|
176
|
-
"version": "7.29.7",
|
|
177
|
-
"integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
|
|
178
|
-
"license": "MIT",
|
|
179
|
-
"dependencies": {
|
|
180
|
-
"@babel/types": "^7.29.7"
|
|
181
|
-
},
|
|
182
|
-
"bin": {
|
|
183
|
-
"parser": "bin/babel-parser.js"
|
|
184
|
-
},
|
|
185
|
-
"engines": {
|
|
186
|
-
"node": ">=6.0.0"
|
|
187
|
-
}
|
|
188
|
-
},
|
|
189
|
-
"node_modules/@babel/traverse": {
|
|
190
|
-
"version": "7.13.0",
|
|
191
|
-
"integrity": "sha512-xys5xi5JEhzC3RzEmSGrs/b3pJW/o87SypZ+G/PhaE7uqVQNv/jlmVIBXuoh5atqQ434LfXV+sf23Oxj0bchJQ==",
|
|
192
|
-
"license": "MIT",
|
|
193
|
-
"dependencies": {
|
|
194
|
-
"@babel/code-frame": "^7.12.13",
|
|
195
|
-
"@babel/generator": "^7.13.0",
|
|
196
|
-
"@babel/helper-function-name": "^7.12.13",
|
|
197
|
-
"@babel/helper-split-export-declaration": "^7.12.13",
|
|
198
|
-
"@babel/parser": "^7.13.0",
|
|
199
|
-
"@babel/types": "^7.13.0",
|
|
200
|
-
"debug": "^4.1.0",
|
|
201
|
-
"globals": "^11.1.0",
|
|
202
|
-
"lodash": "^4.17.19"
|
|
203
|
-
}
|
|
204
|
-
},
|
|
205
102
|
"node_modules/@babel/types": {
|
|
206
|
-
"version": "7.29.
|
|
207
|
-
"integrity": "sha512-
|
|
103
|
+
"version": "7.29.8",
|
|
104
|
+
"integrity": "sha512-Vj1jF3cPfxg7OAfoI7QnVKLoILlm2JF9pnVHrX8qx7AHMiYWT+NDAA7jChlNgRS4WTLc/fD1lXLmPixluj+3Gg==",
|
|
105
|
+
"dev": true,
|
|
208
106
|
"license": "MIT",
|
|
209
107
|
"dependencies": {
|
|
210
108
|
"@babel/helper-string-parser": "^7.29.7",
|
|
@@ -706,8 +604,8 @@
|
|
|
706
604
|
}
|
|
707
605
|
},
|
|
708
606
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
709
|
-
"version": "4.62.
|
|
710
|
-
"integrity": "sha512-
|
|
607
|
+
"version": "4.62.3",
|
|
608
|
+
"integrity": "sha512-c0wdcekXtQvvn5Tsrk/+op/gUArrbWaFduBnTLP2l1cKLSQs4diMWjJw3m6A0DdzT8dAAX95KpkJ3qynCePbmw==",
|
|
711
609
|
"cpu": [
|
|
712
610
|
"arm"
|
|
713
611
|
],
|
|
@@ -719,8 +617,8 @@
|
|
|
719
617
|
]
|
|
720
618
|
},
|
|
721
619
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
722
|
-
"version": "4.62.
|
|
723
|
-
"integrity": "sha512-
|
|
620
|
+
"version": "4.62.3",
|
|
621
|
+
"integrity": "sha512-3YjElDdWN+qXAFbJ/CzPV+0wspLqh54k/I6GfdYtEJRqg7buSgc1yPM3B+93j1M4neobtkATHZTmxK2AMVGfnA==",
|
|
724
622
|
"cpu": [
|
|
725
623
|
"arm64"
|
|
726
624
|
],
|
|
@@ -732,8 +630,8 @@
|
|
|
732
630
|
]
|
|
733
631
|
},
|
|
734
632
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
735
|
-
"version": "4.62.
|
|
736
|
-
"integrity": "sha512-
|
|
633
|
+
"version": "4.62.3",
|
|
634
|
+
"integrity": "sha512-Pch2pFNOxxz1hTjypIdPyRTR6riiwRl84+VcN9djS680fw+Co1nAJINrdpqp7KV0NvyuU8ilZXZCjd7ykJl1GQ==",
|
|
737
635
|
"cpu": [
|
|
738
636
|
"arm64"
|
|
739
637
|
],
|
|
@@ -745,8 +643,8 @@
|
|
|
745
643
|
]
|
|
746
644
|
},
|
|
747
645
|
"node_modules/@rollup/rollup-darwin-x64": {
|
|
748
|
-
"version": "4.62.
|
|
749
|
-
"integrity": "sha512-
|
|
646
|
+
"version": "4.62.3",
|
|
647
|
+
"integrity": "sha512-LEuncFUHFiF8t4yZVZvvZA1wk0pjAscRnsrn1EfTEmN4HXotBi2YtcnLRyaK6UbuczW7xZS5ES+81Rdz8Z0T6g==",
|
|
750
648
|
"cpu": [
|
|
751
649
|
"x64"
|
|
752
650
|
],
|
|
@@ -758,8 +656,8 @@
|
|
|
758
656
|
]
|
|
759
657
|
},
|
|
760
658
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
761
|
-
"version": "4.62.
|
|
762
|
-
"integrity": "sha512-
|
|
659
|
+
"version": "4.62.3",
|
|
660
|
+
"integrity": "sha512-zvBUvsQUpOWALdDsk6qbS8bXf2VxmPisuudNDrY7x0p0jBdsoZl8HsHczIOgkQiZldmcacMKtBzpoGVNeIe2bQ==",
|
|
763
661
|
"cpu": [
|
|
764
662
|
"arm64"
|
|
765
663
|
],
|
|
@@ -771,8 +669,8 @@
|
|
|
771
669
|
]
|
|
772
670
|
},
|
|
773
671
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
774
|
-
"version": "4.62.
|
|
775
|
-
"integrity": "sha512-
|
|
672
|
+
"version": "4.62.3",
|
|
673
|
+
"integrity": "sha512-C2KmNrcSem/AMg984H/dev+si0lieQGdXdR/lYGJnuumXnFb9Y7QdiI62obFdLlxRYLBv4P0eUVIDbD4c1vVvw==",
|
|
776
674
|
"cpu": [
|
|
777
675
|
"x64"
|
|
778
676
|
],
|
|
@@ -784,8 +682,8 @@
|
|
|
784
682
|
]
|
|
785
683
|
},
|
|
786
684
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
787
|
-
"version": "4.62.
|
|
788
|
-
"integrity": "sha512-
|
|
685
|
+
"version": "4.62.3",
|
|
686
|
+
"integrity": "sha512-ggXnsTAEzNQx74XpunRsiZ9aBZDsI7XIa0hm2nzR9f4WzH5/f/d73ZSDaC5ejJ8YLY4NW+V3wr0tjOaeCq8hqA==",
|
|
789
687
|
"cpu": [
|
|
790
688
|
"arm"
|
|
791
689
|
],
|
|
@@ -797,8 +695,8 @@
|
|
|
797
695
|
]
|
|
798
696
|
},
|
|
799
697
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
800
|
-
"version": "4.62.
|
|
801
|
-
"integrity": "sha512-
|
|
698
|
+
"version": "4.62.3",
|
|
699
|
+
"integrity": "sha512-2vng+FlzNUhKZxtej3IUqJgbZoQk2M/dwQM20+ULV0R/E/8tr9/P6uEf2iiGIk4HL0zMKh5Jry7mUHdUOvyGgA==",
|
|
802
700
|
"cpu": [
|
|
803
701
|
"arm"
|
|
804
702
|
],
|
|
@@ -810,8 +708,8 @@
|
|
|
810
708
|
]
|
|
811
709
|
},
|
|
812
710
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
813
|
-
"version": "4.62.
|
|
814
|
-
"integrity": "sha512-
|
|
711
|
+
"version": "4.62.3",
|
|
712
|
+
"integrity": "sha512-LLLFZKt4/Nraf9rxDkhiU8QVgLF4WmCkfr0L4fj0fPfIZFBib0DeiFk1hhaYKd03LFAFJcxHslhDFlNJLylf5Q==",
|
|
815
713
|
"cpu": [
|
|
816
714
|
"arm64"
|
|
817
715
|
],
|
|
@@ -823,8 +721,8 @@
|
|
|
823
721
|
]
|
|
824
722
|
},
|
|
825
723
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
826
|
-
"version": "4.62.
|
|
827
|
-
"integrity": "sha512-
|
|
724
|
+
"version": "4.62.3",
|
|
725
|
+
"integrity": "sha512-WJkdQCvS9sWNOUBJZfQRKpZGFBztRzcowI+nndmflKgU4XY+3a420FgTOSKTsVqJbnzSxeT4vaJalpOaPo2YCQ==",
|
|
828
726
|
"cpu": [
|
|
829
727
|
"arm64"
|
|
830
728
|
],
|
|
@@ -836,8 +734,8 @@
|
|
|
836
734
|
]
|
|
837
735
|
},
|
|
838
736
|
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
839
|
-
"version": "4.62.
|
|
840
|
-
"integrity": "sha512-
|
|
737
|
+
"version": "4.62.3",
|
|
738
|
+
"integrity": "sha512-PwHXCCS2n64/1Ot6rP1YEYA02MGYBcQlr8CSZZyrUG2O7NH6NklYmvr9v3Jy+5e/eDeNchc/ukmKJi9LuflMIQ==",
|
|
841
739
|
"cpu": [
|
|
842
740
|
"loong64"
|
|
843
741
|
],
|
|
@@ -849,8 +747,8 @@
|
|
|
849
747
|
]
|
|
850
748
|
},
|
|
851
749
|
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
852
|
-
"version": "4.62.
|
|
853
|
-
"integrity": "sha512-
|
|
750
|
+
"version": "4.62.3",
|
|
751
|
+
"integrity": "sha512-vUjxINQu3RC8NZS3ykk1gN65gIz8pAopOq2HXuZhiIxHdx7TFvDG+jgrdSgInu1Eza4/Rfi2VzZgyIgEH4WOaw==",
|
|
854
752
|
"cpu": [
|
|
855
753
|
"loong64"
|
|
856
754
|
],
|
|
@@ -862,8 +760,8 @@
|
|
|
862
760
|
]
|
|
863
761
|
},
|
|
864
762
|
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
865
|
-
"version": "4.62.
|
|
866
|
-
"integrity": "sha512-
|
|
763
|
+
"version": "4.62.3",
|
|
764
|
+
"integrity": "sha512-wzko4aJ13+0G3kGnviCg5gnXFKd40izKsrf2uOw12US4XqprkDrmwOpeW14aSNa37V8bfPcz5Fkob6LZ3BAPmA==",
|
|
867
765
|
"cpu": [
|
|
868
766
|
"ppc64"
|
|
869
767
|
],
|
|
@@ -875,8 +773,8 @@
|
|
|
875
773
|
]
|
|
876
774
|
},
|
|
877
775
|
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
878
|
-
"version": "4.62.
|
|
879
|
-
"integrity": "sha512-
|
|
776
|
+
"version": "4.62.3",
|
|
777
|
+
"integrity": "sha512-8120ue0JUMSwy11stlwnfdX3pPd+WZYGCDBwEHWtIHi6pOpZmsEF5QKB7a/UN+XFdqvobxz98kv8RTqikyCEBw==",
|
|
880
778
|
"cpu": [
|
|
881
779
|
"ppc64"
|
|
882
780
|
],
|
|
@@ -888,8 +786,8 @@
|
|
|
888
786
|
]
|
|
889
787
|
},
|
|
890
788
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
891
|
-
"version": "4.62.
|
|
892
|
-
"integrity": "sha512-
|
|
789
|
+
"version": "4.62.3",
|
|
790
|
+
"integrity": "sha512-XLFHnR3tXMjbOCh2vtVJHmxt+995uJsTERQyseFDRA0xxMxyTZPLa3OIUlyFaO4mF/Lu0FjmWHCuPXJT1n/IOg==",
|
|
893
791
|
"cpu": [
|
|
894
792
|
"riscv64"
|
|
895
793
|
],
|
|
@@ -901,8 +799,8 @@
|
|
|
901
799
|
]
|
|
902
800
|
},
|
|
903
801
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
904
|
-
"version": "4.62.
|
|
905
|
-
"integrity": "sha512-
|
|
802
|
+
"version": "4.62.3",
|
|
803
|
+
"integrity": "sha512-se6yXvNGMIl0f+RQzyh7XAmia8/9kplQx424wnG2w0C1oi6XgO6Y8otKhdXFHbHs88Ihavzmvh1NWjuovE76BQ==",
|
|
906
804
|
"cpu": [
|
|
907
805
|
"riscv64"
|
|
908
806
|
],
|
|
@@ -914,8 +812,8 @@
|
|
|
914
812
|
]
|
|
915
813
|
},
|
|
916
814
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
917
|
-
"version": "4.62.
|
|
918
|
-
"integrity": "sha512-
|
|
815
|
+
"version": "4.62.3",
|
|
816
|
+
"integrity": "sha512-gNoxRefktVIiGflpONuxWWXZAzIQG++z9qHO3xKwk4WdDMuQja3JHGfE1u0i3PfPDyvhypdk+WrgIJqLhGG7sg==",
|
|
919
817
|
"cpu": [
|
|
920
818
|
"s390x"
|
|
921
819
|
],
|
|
@@ -927,8 +825,8 @@
|
|
|
927
825
|
]
|
|
928
826
|
},
|
|
929
827
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
930
|
-
"version": "4.62.
|
|
931
|
-
"integrity": "sha512-
|
|
828
|
+
"version": "4.62.3",
|
|
829
|
+
"integrity": "sha512-V4KtWtQfAFMU7+9/A/VDps/VI8CHd3cYz0L8sgJzz8qK7eY7wI4ruFD82UYIYvW9Z4DtlTfhQcsl4XyPHW5uSg==",
|
|
932
830
|
"cpu": [
|
|
933
831
|
"x64"
|
|
934
832
|
],
|
|
@@ -940,8 +838,8 @@
|
|
|
940
838
|
]
|
|
941
839
|
},
|
|
942
840
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
943
|
-
"version": "4.62.
|
|
944
|
-
"integrity": "sha512-
|
|
841
|
+
"version": "4.62.3",
|
|
842
|
+
"integrity": "sha512-LBx9LYXvj2CBkMkjLdNAWLwH0MLMin7do2VcVo9kVPibGLkY0BQQut2fv7NVqkXqZ/CrAu9LqDHVV1xHCMpCPw==",
|
|
945
843
|
"cpu": [
|
|
946
844
|
"x64"
|
|
947
845
|
],
|
|
@@ -953,8 +851,8 @@
|
|
|
953
851
|
]
|
|
954
852
|
},
|
|
955
853
|
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
956
|
-
"version": "4.62.
|
|
957
|
-
"integrity": "sha512-
|
|
854
|
+
"version": "4.62.3",
|
|
855
|
+
"integrity": "sha512-ABVf3Q0RCu7NcyCCOZQI0pJ3GuSdfSl8EXcy88QtdceIMIoCUdfhsJChZ64L9zVM2aJHjde1Bhn5uqSRcX9ySA==",
|
|
958
856
|
"cpu": [
|
|
959
857
|
"x64"
|
|
960
858
|
],
|
|
@@ -966,8 +864,8 @@
|
|
|
966
864
|
]
|
|
967
865
|
},
|
|
968
866
|
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
969
|
-
"version": "4.62.
|
|
970
|
-
"integrity": "sha512
|
|
867
|
+
"version": "4.62.3",
|
|
868
|
+
"integrity": "sha512-+2Cy/ldweGBLlPIKsQLF8U5N44a0KDdbrk1rAjHOM9M2K+kGdIVjHLmmrZIcx+9Ny3ke/1JomCsDI1ocb11+sg==",
|
|
971
869
|
"cpu": [
|
|
972
870
|
"arm64"
|
|
973
871
|
],
|
|
@@ -979,8 +877,8 @@
|
|
|
979
877
|
]
|
|
980
878
|
},
|
|
981
879
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
982
|
-
"version": "4.62.
|
|
983
|
-
"integrity": "sha512-
|
|
880
|
+
"version": "4.62.3",
|
|
881
|
+
"integrity": "sha512-dtZvzc8BedpSaFNy75x6uiWwAGTH+aZHDtdrqP6qk+WcLJrfti6sGje1ZJ9UxyzDLF23d/mV+PaMwuC0hL7UVA==",
|
|
984
882
|
"cpu": [
|
|
985
883
|
"arm64"
|
|
986
884
|
],
|
|
@@ -992,8 +890,8 @@
|
|
|
992
890
|
]
|
|
993
891
|
},
|
|
994
892
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
995
|
-
"version": "4.62.
|
|
996
|
-
"integrity": "sha512-
|
|
893
|
+
"version": "4.62.3",
|
|
894
|
+
"integrity": "sha512-Rj8Ra4noo+aYy7sKBggCx0407mws34kAb1ySyWuq5DAtFBQdkSwnsjCgPrhPe9cvgBKZIukpE+CVHvORCS93kQ==",
|
|
997
895
|
"cpu": [
|
|
998
896
|
"ia32"
|
|
999
897
|
],
|
|
@@ -1005,8 +903,8 @@
|
|
|
1005
903
|
]
|
|
1006
904
|
},
|
|
1007
905
|
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
1008
|
-
"version": "4.62.
|
|
1009
|
-
"integrity": "sha512-
|
|
906
|
+
"version": "4.62.3",
|
|
907
|
+
"integrity": "sha512-vp7N084ew/odXn2gi/mzm9mUkQu9l6AiN6dt4IeUM2Uvm9o+cVmP+YkqbMOteLbiGgqBBlJZjIMYVCfOOIVbVQ==",
|
|
1010
908
|
"cpu": [
|
|
1011
909
|
"x64"
|
|
1012
910
|
],
|
|
@@ -1018,8 +916,8 @@
|
|
|
1018
916
|
]
|
|
1019
917
|
},
|
|
1020
918
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
1021
|
-
"version": "4.62.
|
|
1022
|
-
"integrity": "sha512-
|
|
919
|
+
"version": "4.62.3",
|
|
920
|
+
"integrity": "sha512-MOG/3gTOn4Fwf574RVOaY61I5o6P90legkFADiTyn1hyjNydT+cerU2rLUwPdZkKKyJ+iT+K9p7WXK4LM1Ka6g==",
|
|
1023
921
|
"cpu": [
|
|
1024
922
|
"x64"
|
|
1025
923
|
],
|
|
@@ -1030,91 +928,6 @@
|
|
|
1030
928
|
"win32"
|
|
1031
929
|
]
|
|
1032
930
|
},
|
|
1033
|
-
"node_modules/@types/adm-zip": {
|
|
1034
|
-
"version": "0.5.0",
|
|
1035
|
-
"integrity": "sha512-FCJBJq9ODsQZUNURo5ILAQueuA8WJhRvuihS3ke2iI25mJlfV2LK8jG2Qj2z2AWg8U0FtWWqBHVRetceLskSaw==",
|
|
1036
|
-
"dev": true,
|
|
1037
|
-
"license": "MIT",
|
|
1038
|
-
"dependencies": {
|
|
1039
|
-
"@types/node": "*"
|
|
1040
|
-
}
|
|
1041
|
-
},
|
|
1042
|
-
"node_modules/@types/babel__generator": {
|
|
1043
|
-
"version": "7.6.4",
|
|
1044
|
-
"integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==",
|
|
1045
|
-
"dev": true,
|
|
1046
|
-
"license": "MIT",
|
|
1047
|
-
"dependencies": {
|
|
1048
|
-
"@babel/types": "^7.0.0"
|
|
1049
|
-
}
|
|
1050
|
-
},
|
|
1051
|
-
"node_modules/@types/babel__parser": {
|
|
1052
|
-
"version": "7.1.1",
|
|
1053
|
-
"integrity": "sha512-baSzIb0QQOUQSglfR9gwXVSbHH91YvY00C9Zjq6E7sPdnp8oyPyUsonIj3SF4wUl0s96vR/kyWeVv30gmM/xZw==",
|
|
1054
|
-
"deprecated": "Deprecated",
|
|
1055
|
-
"dev": true,
|
|
1056
|
-
"dependencies": {
|
|
1057
|
-
"@babel/parser": "*"
|
|
1058
|
-
}
|
|
1059
|
-
},
|
|
1060
|
-
"node_modules/@types/babel__traverse": {
|
|
1061
|
-
"version": "7.18.3",
|
|
1062
|
-
"integrity": "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==",
|
|
1063
|
-
"dev": true,
|
|
1064
|
-
"license": "MIT",
|
|
1065
|
-
"dependencies": {
|
|
1066
|
-
"@babel/types": "^7.3.0"
|
|
1067
|
-
}
|
|
1068
|
-
},
|
|
1069
|
-
"node_modules/@types/clean-css": {
|
|
1070
|
-
"version": "4.2.6",
|
|
1071
|
-
"integrity": "sha512-Ze1tf+LnGPmG6hBFMi0B4TEB0mhF7EiMM5oyjLDNPE9hxrPU0W+5+bHvO+eFPA+bt0iC1zkQMoU/iGdRVjcRbw==",
|
|
1072
|
-
"dev": true,
|
|
1073
|
-
"license": "MIT",
|
|
1074
|
-
"dependencies": {
|
|
1075
|
-
"@types/node": "*",
|
|
1076
|
-
"source-map": "^0.6.0"
|
|
1077
|
-
}
|
|
1078
|
-
},
|
|
1079
|
-
"node_modules/@types/clean-css/node_modules/source-map": {
|
|
1080
|
-
"version": "0.6.1",
|
|
1081
|
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
|
1082
|
-
"dev": true,
|
|
1083
|
-
"license": "BSD-3-Clause",
|
|
1084
|
-
"engines": {
|
|
1085
|
-
"node": ">=0.10.0"
|
|
1086
|
-
}
|
|
1087
|
-
},
|
|
1088
|
-
"node_modules/@types/color": {
|
|
1089
|
-
"version": "3.0.3",
|
|
1090
|
-
"integrity": "sha512-X//qzJ3d3Zj82J9sC/C18ZY5f43utPbAJ6PhYt/M7uG6etcF6MRpKdN880KBy43B0BMzSfeT96MzrsNjFI3GbA==",
|
|
1091
|
-
"dev": true,
|
|
1092
|
-
"license": "MIT",
|
|
1093
|
-
"dependencies": {
|
|
1094
|
-
"@types/color-convert": "*"
|
|
1095
|
-
}
|
|
1096
|
-
},
|
|
1097
|
-
"node_modules/@types/color-convert": {
|
|
1098
|
-
"version": "2.0.4",
|
|
1099
|
-
"integrity": "sha512-Ub1MmDdyZ7mX//g25uBAoH/mWGd9swVbt8BseymnaE18SU4po/PjmCrHxqIIRjBo3hV/vh1KGr0eMxUhp+t+dQ==",
|
|
1100
|
-
"dev": true,
|
|
1101
|
-
"license": "MIT",
|
|
1102
|
-
"dependencies": {
|
|
1103
|
-
"@types/color-name": "^1.1.0"
|
|
1104
|
-
}
|
|
1105
|
-
},
|
|
1106
|
-
"node_modules/@types/color-name": {
|
|
1107
|
-
"version": "1.1.5",
|
|
1108
|
-
"integrity": "sha512-j2K5UJqGTxeesj6oQuGpMgifpT5k9HprgQd8D1Y0lOFqKHl3PJu5GMeS4Y5EgjS55AE6OQxf8mPED9uaGbf4Cg==",
|
|
1109
|
-
"dev": true,
|
|
1110
|
-
"license": "MIT"
|
|
1111
|
-
},
|
|
1112
|
-
"node_modules/@types/css-tree": {
|
|
1113
|
-
"version": "2.0.0",
|
|
1114
|
-
"integrity": "sha512-mY2sXRLBnUPMYw6mkOT+6dABeaNxAEKZz6scE9kQPNJx8fKe1fOsm8Honl7+xFYe6TKX8WNk2+7oMp2vBArJ9Q==",
|
|
1115
|
-
"dev": true,
|
|
1116
|
-
"license": "MIT"
|
|
1117
|
-
},
|
|
1118
931
|
"node_modules/@types/estree": {
|
|
1119
932
|
"version": "1.0.9",
|
|
1120
933
|
"integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
|
|
@@ -1140,15 +953,10 @@
|
|
|
1140
953
|
"@types/node": "*"
|
|
1141
954
|
}
|
|
1142
955
|
},
|
|
1143
|
-
"node_modules/@types/less": {
|
|
1144
|
-
"version": "3.0.3",
|
|
1145
|
-
"integrity": "sha512-1YXyYH83h6We1djyoUEqTlVyQtCfJAFXELSKW2ZRtjHD4hQ82CC4lvrv5D0l0FLcKBaiPbXyi3MpMsI9ZRgKsw==",
|
|
1146
|
-
"dev": true,
|
|
1147
|
-
"license": "MIT"
|
|
1148
|
-
},
|
|
1149
956
|
"node_modules/@types/lodash": {
|
|
1150
957
|
"version": "4.14.191",
|
|
1151
958
|
"integrity": "sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==",
|
|
959
|
+
"dev": true,
|
|
1152
960
|
"license": "MIT"
|
|
1153
961
|
},
|
|
1154
962
|
"node_modules/@types/minimatch": {
|
|
@@ -1160,11 +968,7 @@
|
|
|
1160
968
|
"node_modules/@types/node": {
|
|
1161
969
|
"version": "18.11.10",
|
|
1162
970
|
"integrity": "sha512-juG3RWMBOqcOuXC643OAdSA525V44cVgGV6dUDuiFtss+8Fk5x1hI93Rsld43VeJVIeqlP9I7Fn9/qaVqoEAuQ==",
|
|
1163
|
-
"
|
|
1164
|
-
},
|
|
1165
|
-
"node_modules/@types/prettier": {
|
|
1166
|
-
"version": "2.7.1",
|
|
1167
|
-
"integrity": "sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow==",
|
|
971
|
+
"dev": true,
|
|
1168
972
|
"license": "MIT"
|
|
1169
973
|
},
|
|
1170
974
|
"node_modules/@types/rimraf": {
|
|
@@ -1195,6 +999,7 @@
|
|
|
1195
999
|
"node_modules/@types/yargs": {
|
|
1196
1000
|
"version": "17.0.15",
|
|
1197
1001
|
"integrity": "sha512-ZHc4W2dnEQPfhn06TBEdWaiUHEZAocYaiVMfwOipY5jcJt/251wVrKCBWBetGZWO5CF8tdb7L3DmdxVlZ2BOIg==",
|
|
1002
|
+
"dev": true,
|
|
1198
1003
|
"license": "MIT",
|
|
1199
1004
|
"dependencies": {
|
|
1200
1005
|
"@types/yargs-parser": "*"
|
|
@@ -1203,6 +1008,7 @@
|
|
|
1203
1008
|
"node_modules/@types/yargs-parser": {
|
|
1204
1009
|
"version": "21.0.3",
|
|
1205
1010
|
"integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==",
|
|
1011
|
+
"dev": true,
|
|
1206
1012
|
"license": "MIT"
|
|
1207
1013
|
},
|
|
1208
1014
|
"node_modules/@vitest/coverage-v8": {
|
|
@@ -1367,8 +1173,8 @@
|
|
|
1367
1173
|
}
|
|
1368
1174
|
},
|
|
1369
1175
|
"node_modules/acorn": {
|
|
1370
|
-
"version": "8.
|
|
1371
|
-
"integrity": "sha512-
|
|
1176
|
+
"version": "8.18.0",
|
|
1177
|
+
"integrity": "sha512-lGq+9yr1/GuAWaVYIHRjvvySG5/4VfKIvC8EWxStPdcDh/Ka7FG3twP6v4d5BkravUilhIAsG4Qj83t02LWUPQ==",
|
|
1372
1178
|
"dev": true,
|
|
1373
1179
|
"license": "MIT",
|
|
1374
1180
|
"bin": {
|
|
@@ -1378,14 +1184,6 @@
|
|
|
1378
1184
|
"node": ">=0.4.0"
|
|
1379
1185
|
}
|
|
1380
1186
|
},
|
|
1381
|
-
"node_modules/adm-zip": {
|
|
1382
|
-
"version": "0.5.9",
|
|
1383
|
-
"integrity": "sha512-s+3fXLkeeLjZ2kLjCBwQufpI5fuN+kIGBxu6530nVQZGVol0d7Y/M88/xw9HGGUcJjKf8LutN3VPRUBq6N7Ajg==",
|
|
1384
|
-
"license": "MIT",
|
|
1385
|
-
"engines": {
|
|
1386
|
-
"node": ">=6.0"
|
|
1387
|
-
}
|
|
1388
|
-
},
|
|
1389
1187
|
"node_modules/ansi-escapes": {
|
|
1390
1188
|
"version": "7.3.0",
|
|
1391
1189
|
"integrity": "sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==",
|
|
@@ -1571,8 +1369,8 @@
|
|
|
1571
1369
|
}
|
|
1572
1370
|
},
|
|
1573
1371
|
"node_modules/bare-url": {
|
|
1574
|
-
"version": "2.4.
|
|
1575
|
-
"integrity": "sha512-
|
|
1372
|
+
"version": "2.4.6",
|
|
1373
|
+
"integrity": "sha512-iQxPClE07hETVpbRoX7JXX3v/ZQViCxe/SYCxylRLzdEx1xJAufPptfiOqR8tqiCtmbtMDANKWszzjLu1PMAZQ==",
|
|
1576
1374
|
"license": "Apache-2.0",
|
|
1577
1375
|
"dependencies": {
|
|
1578
1376
|
"bare-path": "^3.0.0"
|
|
@@ -1603,8 +1401,8 @@
|
|
|
1603
1401
|
"license": "ISC"
|
|
1604
1402
|
},
|
|
1605
1403
|
"node_modules/brace-expansion": {
|
|
1606
|
-
"version": "2.1.
|
|
1607
|
-
"integrity": "sha512-
|
|
1404
|
+
"version": "2.1.4",
|
|
1405
|
+
"integrity": "sha512-hGfVzPxthbf3+2yjg/RBs60cB0FhqBS/zvdV/4wn4/BmN0bNMMHPc4V/BbFieqf1TKAGGAHnY4eSjajCl0f2Xg==",
|
|
1608
1406
|
"license": "MIT",
|
|
1609
1407
|
"dependencies": {
|
|
1610
1408
|
"balanced-match": "^1.0.0"
|
|
@@ -1717,25 +1515,6 @@
|
|
|
1717
1515
|
"url": "https://paulmillr.com/funding/"
|
|
1718
1516
|
}
|
|
1719
1517
|
},
|
|
1720
|
-
"node_modules/clean-css": {
|
|
1721
|
-
"version": "5.1.5",
|
|
1722
|
-
"integrity": "sha512-9dr/cU/LjMpU57PXlSvDkVRh0rPxJBXiBtD0+SgYt8ahTCsXtfKjCkNYgIoTC6mBg8CFr5EKhW3DKCaGMUbUfQ==",
|
|
1723
|
-
"license": "MIT",
|
|
1724
|
-
"dependencies": {
|
|
1725
|
-
"source-map": "~0.6.0"
|
|
1726
|
-
},
|
|
1727
|
-
"engines": {
|
|
1728
|
-
"node": ">= 10.0"
|
|
1729
|
-
}
|
|
1730
|
-
},
|
|
1731
|
-
"node_modules/clean-css/node_modules/source-map": {
|
|
1732
|
-
"version": "0.6.1",
|
|
1733
|
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
|
1734
|
-
"license": "BSD-3-Clause",
|
|
1735
|
-
"engines": {
|
|
1736
|
-
"node": ">=0.10.0"
|
|
1737
|
-
}
|
|
1738
|
-
},
|
|
1739
1518
|
"node_modules/cli-cursor": {
|
|
1740
1519
|
"version": "5.0.0",
|
|
1741
1520
|
"integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==",
|
|
@@ -1868,18 +1647,6 @@
|
|
|
1868
1647
|
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
1869
1648
|
}
|
|
1870
1649
|
},
|
|
1871
|
-
"node_modules/color": {
|
|
1872
|
-
"version": "4.2.3",
|
|
1873
|
-
"integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
|
|
1874
|
-
"license": "MIT",
|
|
1875
|
-
"dependencies": {
|
|
1876
|
-
"color-convert": "^2.0.1",
|
|
1877
|
-
"color-string": "^1.9.0"
|
|
1878
|
-
},
|
|
1879
|
-
"engines": {
|
|
1880
|
-
"node": ">=12.5.0"
|
|
1881
|
-
}
|
|
1882
|
-
},
|
|
1883
1650
|
"node_modules/color-convert": {
|
|
1884
1651
|
"version": "2.0.1",
|
|
1885
1652
|
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
@@ -1896,15 +1663,6 @@
|
|
|
1896
1663
|
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
1897
1664
|
"license": "MIT"
|
|
1898
1665
|
},
|
|
1899
|
-
"node_modules/color-string": {
|
|
1900
|
-
"version": "1.9.1",
|
|
1901
|
-
"integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
|
|
1902
|
-
"license": "MIT",
|
|
1903
|
-
"dependencies": {
|
|
1904
|
-
"color-name": "^1.0.0",
|
|
1905
|
-
"simple-swizzle": "^0.2.2"
|
|
1906
|
-
}
|
|
1907
|
-
},
|
|
1908
1666
|
"node_modules/colorette": {
|
|
1909
1667
|
"version": "2.0.20",
|
|
1910
1668
|
"integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
|
|
@@ -1955,17 +1713,6 @@
|
|
|
1955
1713
|
"node": "^14.18.0 || >=16.10.0"
|
|
1956
1714
|
}
|
|
1957
1715
|
},
|
|
1958
|
-
"node_modules/copy-anything": {
|
|
1959
|
-
"version": "2.0.6",
|
|
1960
|
-
"integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==",
|
|
1961
|
-
"license": "MIT",
|
|
1962
|
-
"dependencies": {
|
|
1963
|
-
"is-what": "^3.14.1"
|
|
1964
|
-
},
|
|
1965
|
-
"funding": {
|
|
1966
|
-
"url": "https://github.com/sponsors/mesqueeb"
|
|
1967
|
-
}
|
|
1968
|
-
},
|
|
1969
1716
|
"node_modules/core-util-is": {
|
|
1970
1717
|
"version": "1.0.3",
|
|
1971
1718
|
"integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
|
|
@@ -2022,19 +1769,6 @@
|
|
|
2022
1769
|
"url": "https://github.com/sponsors/fb55"
|
|
2023
1770
|
}
|
|
2024
1771
|
},
|
|
2025
|
-
"node_modules/css-tree": {
|
|
2026
|
-
"version": "2.1.0",
|
|
2027
|
-
"integrity": "sha512-PcysZRzToBbrpoUrZ9qfblRIRf8zbEAkU0AIpQFtgkFK0vSbzOmBCvdSAx2Zg7Xx5wiYJKUKk0NMP7kxevie/A==",
|
|
2028
|
-
"license": "MIT",
|
|
2029
|
-
"dependencies": {
|
|
2030
|
-
"mdn-data": "2.0.27",
|
|
2031
|
-
"source-map-js": "^1.0.1"
|
|
2032
|
-
},
|
|
2033
|
-
"engines": {
|
|
2034
|
-
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0",
|
|
2035
|
-
"npm": ">=7.0.0"
|
|
2036
|
-
}
|
|
2037
|
-
},
|
|
2038
1772
|
"node_modules/css-what": {
|
|
2039
1773
|
"version": "6.2.2",
|
|
2040
1774
|
"integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==",
|
|
@@ -2049,6 +1783,7 @@
|
|
|
2049
1783
|
"node_modules/debug": {
|
|
2050
1784
|
"version": "4.4.3",
|
|
2051
1785
|
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
1786
|
+
"dev": true,
|
|
2052
1787
|
"license": "MIT",
|
|
2053
1788
|
"dependencies": {
|
|
2054
1789
|
"ms": "^2.1.3"
|
|
@@ -2152,18 +1887,6 @@
|
|
|
2152
1887
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
2153
1888
|
}
|
|
2154
1889
|
},
|
|
2155
|
-
"node_modules/errno": {
|
|
2156
|
-
"version": "0.1.8",
|
|
2157
|
-
"integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==",
|
|
2158
|
-
"license": "MIT",
|
|
2159
|
-
"optional": true,
|
|
2160
|
-
"dependencies": {
|
|
2161
|
-
"prr": "~1.0.1"
|
|
2162
|
-
},
|
|
2163
|
-
"bin": {
|
|
2164
|
-
"errno": "cli.js"
|
|
2165
|
-
}
|
|
2166
|
-
},
|
|
2167
1890
|
"node_modules/es-module-lexer": {
|
|
2168
1891
|
"version": "1.7.0",
|
|
2169
1892
|
"integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==",
|
|
@@ -2427,14 +2150,6 @@
|
|
|
2427
2150
|
"url": "https://github.com/sponsors/isaacs"
|
|
2428
2151
|
}
|
|
2429
2152
|
},
|
|
2430
|
-
"node_modules/globals": {
|
|
2431
|
-
"version": "11.12.0",
|
|
2432
|
-
"integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
|
|
2433
|
-
"license": "MIT",
|
|
2434
|
-
"engines": {
|
|
2435
|
-
"node": ">=4"
|
|
2436
|
-
}
|
|
2437
|
-
},
|
|
2438
2153
|
"node_modules/graceful-fs": {
|
|
2439
2154
|
"version": "4.2.11",
|
|
2440
2155
|
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
@@ -2460,14 +2175,6 @@
|
|
|
2460
2175
|
"uglify-js": "^3.1.4"
|
|
2461
2176
|
}
|
|
2462
2177
|
},
|
|
2463
|
-
"node_modules/handlebars/node_modules/source-map": {
|
|
2464
|
-
"version": "0.6.1",
|
|
2465
|
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
|
2466
|
-
"license": "BSD-3-Clause",
|
|
2467
|
-
"engines": {
|
|
2468
|
-
"node": ">=0.10.0"
|
|
2469
|
-
}
|
|
2470
|
-
},
|
|
2471
2178
|
"node_modules/has-flag": {
|
|
2472
2179
|
"version": "4.0.0",
|
|
2473
2180
|
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
|
@@ -2519,18 +2226,6 @@
|
|
|
2519
2226
|
"url": "https://github.com/sponsors/typicode"
|
|
2520
2227
|
}
|
|
2521
2228
|
},
|
|
2522
|
-
"node_modules/iconv-lite": {
|
|
2523
|
-
"version": "0.4.24",
|
|
2524
|
-
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
|
|
2525
|
-
"license": "MIT",
|
|
2526
|
-
"optional": true,
|
|
2527
|
-
"dependencies": {
|
|
2528
|
-
"safer-buffer": ">= 2.1.2 < 3"
|
|
2529
|
-
},
|
|
2530
|
-
"engines": {
|
|
2531
|
-
"node": ">=0.10.0"
|
|
2532
|
-
}
|
|
2533
|
-
},
|
|
2534
2229
|
"node_modules/ieee754": {
|
|
2535
2230
|
"version": "1.2.1",
|
|
2536
2231
|
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
|
|
@@ -2550,18 +2245,6 @@
|
|
|
2550
2245
|
],
|
|
2551
2246
|
"license": "BSD-3-Clause"
|
|
2552
2247
|
},
|
|
2553
|
-
"node_modules/image-size": {
|
|
2554
|
-
"version": "0.5.5",
|
|
2555
|
-
"integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==",
|
|
2556
|
-
"license": "MIT",
|
|
2557
|
-
"optional": true,
|
|
2558
|
-
"bin": {
|
|
2559
|
-
"image-size": "bin/image-size.js"
|
|
2560
|
-
},
|
|
2561
|
-
"engines": {
|
|
2562
|
-
"node": ">=0.10.0"
|
|
2563
|
-
}
|
|
2564
|
-
},
|
|
2565
2248
|
"node_modules/inflight": {
|
|
2566
2249
|
"version": "1.0.6",
|
|
2567
2250
|
"integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
|
|
@@ -2577,11 +2260,6 @@
|
|
|
2577
2260
|
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
|
2578
2261
|
"license": "ISC"
|
|
2579
2262
|
},
|
|
2580
|
-
"node_modules/is-arrayish": {
|
|
2581
|
-
"version": "0.3.4",
|
|
2582
|
-
"integrity": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==",
|
|
2583
|
-
"license": "MIT"
|
|
2584
|
-
},
|
|
2585
2263
|
"node_modules/is-fullwidth-code-point": {
|
|
2586
2264
|
"version": "5.1.0",
|
|
2587
2265
|
"integrity": "sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==",
|
|
@@ -2617,11 +2295,6 @@
|
|
|
2617
2295
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
2618
2296
|
}
|
|
2619
2297
|
},
|
|
2620
|
-
"node_modules/is-what": {
|
|
2621
|
-
"version": "3.14.1",
|
|
2622
|
-
"integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==",
|
|
2623
|
-
"license": "MIT"
|
|
2624
|
-
},
|
|
2625
2298
|
"node_modules/isarray": {
|
|
2626
2299
|
"version": "1.0.0",
|
|
2627
2300
|
"integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
|
|
@@ -2705,22 +2378,6 @@
|
|
|
2705
2378
|
"node": ">=10"
|
|
2706
2379
|
}
|
|
2707
2380
|
},
|
|
2708
|
-
"node_modules/js-tokens": {
|
|
2709
|
-
"version": "4.0.0",
|
|
2710
|
-
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
|
|
2711
|
-
"license": "MIT"
|
|
2712
|
-
},
|
|
2713
|
-
"node_modules/jsesc": {
|
|
2714
|
-
"version": "2.5.2",
|
|
2715
|
-
"integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
|
|
2716
|
-
"license": "MIT",
|
|
2717
|
-
"bin": {
|
|
2718
|
-
"jsesc": "bin/jsesc"
|
|
2719
|
-
},
|
|
2720
|
-
"engines": {
|
|
2721
|
-
"node": ">=4"
|
|
2722
|
-
}
|
|
2723
|
-
},
|
|
2724
2381
|
"node_modules/jsonfile": {
|
|
2725
2382
|
"version": "6.2.1",
|
|
2726
2383
|
"integrity": "sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==",
|
|
@@ -2770,67 +2427,6 @@
|
|
|
2770
2427
|
"safe-buffer": "~5.1.0"
|
|
2771
2428
|
}
|
|
2772
2429
|
},
|
|
2773
|
-
"node_modules/less": {
|
|
2774
|
-
"version": "4.1.1",
|
|
2775
|
-
"integrity": "sha512-w09o8tZFPThBscl5d0Ggp3RcrKIouBoQscnOMgFH3n5V3kN/CXGHNfCkRPtxJk6nKryDXaV9aHLK55RXuH4sAw==",
|
|
2776
|
-
"license": "Apache-2.0",
|
|
2777
|
-
"dependencies": {
|
|
2778
|
-
"copy-anything": "^2.0.1",
|
|
2779
|
-
"parse-node-version": "^1.0.1",
|
|
2780
|
-
"tslib": "^1.10.0"
|
|
2781
|
-
},
|
|
2782
|
-
"bin": {
|
|
2783
|
-
"lessc": "bin/lessc"
|
|
2784
|
-
},
|
|
2785
|
-
"engines": {
|
|
2786
|
-
"node": ">=6"
|
|
2787
|
-
},
|
|
2788
|
-
"optionalDependencies": {
|
|
2789
|
-
"errno": "^0.1.1",
|
|
2790
|
-
"graceful-fs": "^4.1.2",
|
|
2791
|
-
"image-size": "~0.5.0",
|
|
2792
|
-
"make-dir": "^2.1.0",
|
|
2793
|
-
"mime": "^1.4.1",
|
|
2794
|
-
"needle": "^2.5.2",
|
|
2795
|
-
"source-map": "~0.6.0"
|
|
2796
|
-
}
|
|
2797
|
-
},
|
|
2798
|
-
"node_modules/less/node_modules/make-dir": {
|
|
2799
|
-
"version": "2.1.0",
|
|
2800
|
-
"integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
|
|
2801
|
-
"license": "MIT",
|
|
2802
|
-
"optional": true,
|
|
2803
|
-
"dependencies": {
|
|
2804
|
-
"pify": "^4.0.1",
|
|
2805
|
-
"semver": "^5.6.0"
|
|
2806
|
-
},
|
|
2807
|
-
"engines": {
|
|
2808
|
-
"node": ">=6"
|
|
2809
|
-
}
|
|
2810
|
-
},
|
|
2811
|
-
"node_modules/less/node_modules/semver": {
|
|
2812
|
-
"version": "5.7.2",
|
|
2813
|
-
"integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
|
|
2814
|
-
"license": "ISC",
|
|
2815
|
-
"optional": true,
|
|
2816
|
-
"bin": {
|
|
2817
|
-
"semver": "bin/semver"
|
|
2818
|
-
}
|
|
2819
|
-
},
|
|
2820
|
-
"node_modules/less/node_modules/source-map": {
|
|
2821
|
-
"version": "0.6.1",
|
|
2822
|
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
|
2823
|
-
"license": "BSD-3-Clause",
|
|
2824
|
-
"optional": true,
|
|
2825
|
-
"engines": {
|
|
2826
|
-
"node": ">=0.10.0"
|
|
2827
|
-
}
|
|
2828
|
-
},
|
|
2829
|
-
"node_modules/less/node_modules/tslib": {
|
|
2830
|
-
"version": "1.14.1",
|
|
2831
|
-
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
|
|
2832
|
-
"license": "0BSD"
|
|
2833
|
-
},
|
|
2834
2430
|
"node_modules/lilconfig": {
|
|
2835
2431
|
"version": "3.1.3",
|
|
2836
2432
|
"integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
|
|
@@ -3051,12 +2647,12 @@
|
|
|
3051
2647
|
}
|
|
3052
2648
|
},
|
|
3053
2649
|
"node_modules/magicast/node_modules/@babel/parser": {
|
|
3054
|
-
"version": "7.29.
|
|
3055
|
-
"integrity": "sha512-
|
|
2650
|
+
"version": "7.29.8",
|
|
2651
|
+
"integrity": "sha512-E8lTAYNB1KW+FH+VGJuZM1ioAx2E6oVlvQFRrf5P8ZZmsiJXYAD9vTFV7yyEURNzgh1dFqMZuO6tUwcARbqFCA==",
|
|
3056
2652
|
"dev": true,
|
|
3057
2653
|
"license": "MIT",
|
|
3058
2654
|
"dependencies": {
|
|
3059
|
-
"@babel/types": "^7.29.
|
|
2655
|
+
"@babel/types": "^7.29.8"
|
|
3060
2656
|
},
|
|
3061
2657
|
"bin": {
|
|
3062
2658
|
"parser": "bin/babel-parser.js"
|
|
@@ -3092,11 +2688,6 @@
|
|
|
3092
2688
|
"node": ">=10"
|
|
3093
2689
|
}
|
|
3094
2690
|
},
|
|
3095
|
-
"node_modules/mdn-data": {
|
|
3096
|
-
"version": "2.0.27",
|
|
3097
|
-
"integrity": "sha512-kwqO0I0jtWr25KcfLm9pia8vLZ8qoAKhWZuZMbneJq3jjBD3gl5nZs8l8Tu3ZBlBAHVQtDur9rdDGyvtfVraHQ==",
|
|
3098
|
-
"license": "CC0-1.0"
|
|
3099
|
-
},
|
|
3100
2691
|
"node_modules/merge-stream": {
|
|
3101
2692
|
"version": "2.0.0",
|
|
3102
2693
|
"integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
|
|
@@ -3115,18 +2706,6 @@
|
|
|
3115
2706
|
"node": ">=8.6"
|
|
3116
2707
|
}
|
|
3117
2708
|
},
|
|
3118
|
-
"node_modules/mime": {
|
|
3119
|
-
"version": "1.6.0",
|
|
3120
|
-
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
|
|
3121
|
-
"license": "MIT",
|
|
3122
|
-
"optional": true,
|
|
3123
|
-
"bin": {
|
|
3124
|
-
"mime": "cli.js"
|
|
3125
|
-
},
|
|
3126
|
-
"engines": {
|
|
3127
|
-
"node": ">=4"
|
|
3128
|
-
}
|
|
3129
|
-
},
|
|
3130
2709
|
"node_modules/mimic-fn": {
|
|
3131
2710
|
"version": "2.1.0",
|
|
3132
2711
|
"integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
|
|
@@ -3192,6 +2771,7 @@
|
|
|
3192
2771
|
"node_modules/ms": {
|
|
3193
2772
|
"version": "2.1.3",
|
|
3194
2773
|
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
2774
|
+
"dev": true,
|
|
3195
2775
|
"license": "MIT"
|
|
3196
2776
|
},
|
|
3197
2777
|
"node_modules/mz": {
|
|
@@ -3218,8 +2798,8 @@
|
|
|
3218
2798
|
}
|
|
3219
2799
|
},
|
|
3220
2800
|
"node_modules/nanoid": {
|
|
3221
|
-
"version": "3.3.
|
|
3222
|
-
"integrity": "sha512-
|
|
2801
|
+
"version": "3.3.16",
|
|
2802
|
+
"integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==",
|
|
3223
2803
|
"dev": true,
|
|
3224
2804
|
"funding": [
|
|
3225
2805
|
{
|
|
@@ -3235,32 +2815,6 @@
|
|
|
3235
2815
|
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
3236
2816
|
}
|
|
3237
2817
|
},
|
|
3238
|
-
"node_modules/needle": {
|
|
3239
|
-
"version": "2.9.1",
|
|
3240
|
-
"integrity": "sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==",
|
|
3241
|
-
"license": "MIT",
|
|
3242
|
-
"optional": true,
|
|
3243
|
-
"dependencies": {
|
|
3244
|
-
"debug": "^3.2.6",
|
|
3245
|
-
"iconv-lite": "^0.4.4",
|
|
3246
|
-
"sax": "^1.2.4"
|
|
3247
|
-
},
|
|
3248
|
-
"bin": {
|
|
3249
|
-
"needle": "bin/needle"
|
|
3250
|
-
},
|
|
3251
|
-
"engines": {
|
|
3252
|
-
"node": ">= 4.4.x"
|
|
3253
|
-
}
|
|
3254
|
-
},
|
|
3255
|
-
"node_modules/needle/node_modules/debug": {
|
|
3256
|
-
"version": "3.2.7",
|
|
3257
|
-
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
|
|
3258
|
-
"license": "MIT",
|
|
3259
|
-
"optional": true,
|
|
3260
|
-
"dependencies": {
|
|
3261
|
-
"ms": "^2.1.1"
|
|
3262
|
-
}
|
|
3263
|
-
},
|
|
3264
2818
|
"node_modules/neo-async": {
|
|
3265
2819
|
"version": "2.6.2",
|
|
3266
2820
|
"integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
|
|
@@ -3341,14 +2895,6 @@
|
|
|
3341
2895
|
"integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
|
|
3342
2896
|
"license": "BlueOak-1.0.0"
|
|
3343
2897
|
},
|
|
3344
|
-
"node_modules/parse-node-version": {
|
|
3345
|
-
"version": "1.0.1",
|
|
3346
|
-
"integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==",
|
|
3347
|
-
"license": "MIT",
|
|
3348
|
-
"engines": {
|
|
3349
|
-
"node": ">= 0.10"
|
|
3350
|
-
}
|
|
3351
|
-
},
|
|
3352
2898
|
"node_modules/path-is-absolute": {
|
|
3353
2899
|
"version": "1.0.1",
|
|
3354
2900
|
"integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
|
|
@@ -3398,6 +2944,7 @@
|
|
|
3398
2944
|
"node_modules/picocolors": {
|
|
3399
2945
|
"version": "1.1.1",
|
|
3400
2946
|
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
2947
|
+
"dev": true,
|
|
3401
2948
|
"license": "ISC"
|
|
3402
2949
|
},
|
|
3403
2950
|
"node_modules/picomatch": {
|
|
@@ -3424,15 +2971,6 @@
|
|
|
3424
2971
|
"node": ">=0.10"
|
|
3425
2972
|
}
|
|
3426
2973
|
},
|
|
3427
|
-
"node_modules/pify": {
|
|
3428
|
-
"version": "4.0.1",
|
|
3429
|
-
"integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
|
|
3430
|
-
"license": "MIT",
|
|
3431
|
-
"optional": true,
|
|
3432
|
-
"engines": {
|
|
3433
|
-
"node": ">=6"
|
|
3434
|
-
}
|
|
3435
|
-
},
|
|
3436
2974
|
"node_modules/pirates": {
|
|
3437
2975
|
"version": "4.0.7",
|
|
3438
2976
|
"integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==",
|
|
@@ -3454,8 +2992,8 @@
|
|
|
3454
2992
|
}
|
|
3455
2993
|
},
|
|
3456
2994
|
"node_modules/postcss": {
|
|
3457
|
-
"version": "8.5.
|
|
3458
|
-
"integrity": "sha512-
|
|
2995
|
+
"version": "8.5.25",
|
|
2996
|
+
"integrity": "sha512-DTPx3RWSSnWyzLxQnlH0rJP+EW5ekl16ZU4/psbIhA0e53kJfdgaN5vKM+xP7yJtXVu+nfdVFmlgFDEKAe4Pyw==",
|
|
3459
2997
|
"dev": true,
|
|
3460
2998
|
"funding": [
|
|
3461
2999
|
{
|
|
@@ -3473,7 +3011,7 @@
|
|
|
3473
3011
|
],
|
|
3474
3012
|
"license": "MIT",
|
|
3475
3013
|
"dependencies": {
|
|
3476
|
-
"nanoid": "^3.3.
|
|
3014
|
+
"nanoid": "^3.3.16",
|
|
3477
3015
|
"picocolors": "^1.1.1",
|
|
3478
3016
|
"source-map-js": "^1.2.1"
|
|
3479
3017
|
},
|
|
@@ -3551,12 +3089,6 @@
|
|
|
3551
3089
|
"integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
|
|
3552
3090
|
"license": "MIT"
|
|
3553
3091
|
},
|
|
3554
|
-
"node_modules/prr": {
|
|
3555
|
-
"version": "1.0.1",
|
|
3556
|
-
"integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==",
|
|
3557
|
-
"license": "MIT",
|
|
3558
|
-
"optional": true
|
|
3559
|
-
},
|
|
3560
3092
|
"node_modules/readable-stream": {
|
|
3561
3093
|
"version": "4.7.0",
|
|
3562
3094
|
"integrity": "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==",
|
|
@@ -3686,8 +3218,8 @@
|
|
|
3686
3218
|
}
|
|
3687
3219
|
},
|
|
3688
3220
|
"node_modules/rimraf/node_modules/brace-expansion": {
|
|
3689
|
-
"version": "1.1.
|
|
3690
|
-
"integrity": "sha512-
|
|
3221
|
+
"version": "1.1.18",
|
|
3222
|
+
"integrity": "sha512-Edep/X9fGqVNmzKBVsDYIOtD+z1tuezV70LBjdCst9Tqu76lsnvRiZ6oTic1n+/BIwX6QDGAO94PN4N2SADvtw==",
|
|
3691
3223
|
"license": "MIT",
|
|
3692
3224
|
"dependencies": {
|
|
3693
3225
|
"balanced-match": "^1.0.0",
|
|
@@ -3726,8 +3258,8 @@
|
|
|
3726
3258
|
}
|
|
3727
3259
|
},
|
|
3728
3260
|
"node_modules/rollup": {
|
|
3729
|
-
"version": "4.62.
|
|
3730
|
-
"integrity": "sha512-
|
|
3261
|
+
"version": "4.62.3",
|
|
3262
|
+
"integrity": "sha512-Gu0c0iH9FzgX1L1t7ByIbbS3Vmdz+6KHm/EsqmmC71gUQ82yvZRkTK6XzrFObSka91WUVdynqp6nsfilzr5k6Q==",
|
|
3731
3263
|
"dev": true,
|
|
3732
3264
|
"license": "MIT",
|
|
3733
3265
|
"dependencies": {
|
|
@@ -3741,31 +3273,31 @@
|
|
|
3741
3273
|
"npm": ">=8.0.0"
|
|
3742
3274
|
},
|
|
3743
3275
|
"optionalDependencies": {
|
|
3744
|
-
"@rollup/rollup-android-arm-eabi": "4.62.
|
|
3745
|
-
"@rollup/rollup-android-arm64": "4.62.
|
|
3746
|
-
"@rollup/rollup-darwin-arm64": "4.62.
|
|
3747
|
-
"@rollup/rollup-darwin-x64": "4.62.
|
|
3748
|
-
"@rollup/rollup-freebsd-arm64": "4.62.
|
|
3749
|
-
"@rollup/rollup-freebsd-x64": "4.62.
|
|
3750
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.62.
|
|
3751
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.62.
|
|
3752
|
-
"@rollup/rollup-linux-arm64-gnu": "4.62.
|
|
3753
|
-
"@rollup/rollup-linux-arm64-musl": "4.62.
|
|
3754
|
-
"@rollup/rollup-linux-loong64-gnu": "4.62.
|
|
3755
|
-
"@rollup/rollup-linux-loong64-musl": "4.62.
|
|
3756
|
-
"@rollup/rollup-linux-ppc64-gnu": "4.62.
|
|
3757
|
-
"@rollup/rollup-linux-ppc64-musl": "4.62.
|
|
3758
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.62.
|
|
3759
|
-
"@rollup/rollup-linux-riscv64-musl": "4.62.
|
|
3760
|
-
"@rollup/rollup-linux-s390x-gnu": "4.62.
|
|
3761
|
-
"@rollup/rollup-linux-x64-gnu": "4.62.
|
|
3762
|
-
"@rollup/rollup-linux-x64-musl": "4.62.
|
|
3763
|
-
"@rollup/rollup-openbsd-x64": "4.62.
|
|
3764
|
-
"@rollup/rollup-openharmony-arm64": "4.62.
|
|
3765
|
-
"@rollup/rollup-win32-arm64-msvc": "4.62.
|
|
3766
|
-
"@rollup/rollup-win32-ia32-msvc": "4.62.
|
|
3767
|
-
"@rollup/rollup-win32-x64-gnu": "4.62.
|
|
3768
|
-
"@rollup/rollup-win32-x64-msvc": "4.62.
|
|
3276
|
+
"@rollup/rollup-android-arm-eabi": "4.62.3",
|
|
3277
|
+
"@rollup/rollup-android-arm64": "4.62.3",
|
|
3278
|
+
"@rollup/rollup-darwin-arm64": "4.62.3",
|
|
3279
|
+
"@rollup/rollup-darwin-x64": "4.62.3",
|
|
3280
|
+
"@rollup/rollup-freebsd-arm64": "4.62.3",
|
|
3281
|
+
"@rollup/rollup-freebsd-x64": "4.62.3",
|
|
3282
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.62.3",
|
|
3283
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.62.3",
|
|
3284
|
+
"@rollup/rollup-linux-arm64-gnu": "4.62.3",
|
|
3285
|
+
"@rollup/rollup-linux-arm64-musl": "4.62.3",
|
|
3286
|
+
"@rollup/rollup-linux-loong64-gnu": "4.62.3",
|
|
3287
|
+
"@rollup/rollup-linux-loong64-musl": "4.62.3",
|
|
3288
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.62.3",
|
|
3289
|
+
"@rollup/rollup-linux-ppc64-musl": "4.62.3",
|
|
3290
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.62.3",
|
|
3291
|
+
"@rollup/rollup-linux-riscv64-musl": "4.62.3",
|
|
3292
|
+
"@rollup/rollup-linux-s390x-gnu": "4.62.3",
|
|
3293
|
+
"@rollup/rollup-linux-x64-gnu": "4.62.3",
|
|
3294
|
+
"@rollup/rollup-linux-x64-musl": "4.62.3",
|
|
3295
|
+
"@rollup/rollup-openbsd-x64": "4.62.3",
|
|
3296
|
+
"@rollup/rollup-openharmony-arm64": "4.62.3",
|
|
3297
|
+
"@rollup/rollup-win32-arm64-msvc": "4.62.3",
|
|
3298
|
+
"@rollup/rollup-win32-ia32-msvc": "4.62.3",
|
|
3299
|
+
"@rollup/rollup-win32-x64-gnu": "4.62.3",
|
|
3300
|
+
"@rollup/rollup-win32-x64-msvc": "4.62.3",
|
|
3769
3301
|
"fsevents": "~2.3.2"
|
|
3770
3302
|
}
|
|
3771
3303
|
},
|
|
@@ -3788,15 +3320,9 @@
|
|
|
3788
3320
|
],
|
|
3789
3321
|
"license": "MIT"
|
|
3790
3322
|
},
|
|
3791
|
-
"node_modules/safer-buffer": {
|
|
3792
|
-
"version": "2.1.2",
|
|
3793
|
-
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
|
3794
|
-
"license": "MIT",
|
|
3795
|
-
"optional": true
|
|
3796
|
-
},
|
|
3797
3323
|
"node_modules/sax": {
|
|
3798
|
-
"version": "1.6.
|
|
3799
|
-
"integrity": "sha512-
|
|
3324
|
+
"version": "1.6.1",
|
|
3325
|
+
"integrity": "sha512-42tBVwLWnaQvW5zc4HbZrTuWccECCZfBi92FDuwtqxasH+JbPB3/FOKb1m222K42R4WxuxzzMsTswfzgtSu64Q==",
|
|
3800
3326
|
"license": "BlueOak-1.0.0",
|
|
3801
3327
|
"engines": {
|
|
3802
3328
|
"node": ">=11.0.0"
|
|
@@ -3805,7 +3331,6 @@
|
|
|
3805
3331
|
"node_modules/semver": {
|
|
3806
3332
|
"version": "7.5.0",
|
|
3807
3333
|
"integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==",
|
|
3808
|
-
"dev": true,
|
|
3809
3334
|
"license": "ISC",
|
|
3810
3335
|
"dependencies": {
|
|
3811
3336
|
"lru-cache": "^6.0.0"
|
|
@@ -3820,7 +3345,6 @@
|
|
|
3820
3345
|
"node_modules/semver/node_modules/lru-cache": {
|
|
3821
3346
|
"version": "6.0.0",
|
|
3822
3347
|
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
|
|
3823
|
-
"dev": true,
|
|
3824
3348
|
"license": "ISC",
|
|
3825
3349
|
"dependencies": {
|
|
3826
3350
|
"yallist": "^4.0.0"
|
|
@@ -3859,14 +3383,6 @@
|
|
|
3859
3383
|
"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
|
|
3860
3384
|
"license": "ISC"
|
|
3861
3385
|
},
|
|
3862
|
-
"node_modules/simple-swizzle": {
|
|
3863
|
-
"version": "0.2.4",
|
|
3864
|
-
"integrity": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==",
|
|
3865
|
-
"license": "MIT",
|
|
3866
|
-
"dependencies": {
|
|
3867
|
-
"is-arrayish": "^0.3.1"
|
|
3868
|
-
}
|
|
3869
|
-
},
|
|
3870
3386
|
"node_modules/slice-ansi": {
|
|
3871
3387
|
"version": "8.0.0",
|
|
3872
3388
|
"integrity": "sha512-stxByr12oeeOyY2BlviTNQlYV5xOj47GirPr4yA1hE9JCtxfQN0+tVbkxwCtYDQWhEKWFHsEK48ORg5jrouCAg==",
|
|
@@ -3884,8 +3400,8 @@
|
|
|
3884
3400
|
}
|
|
3885
3401
|
},
|
|
3886
3402
|
"node_modules/source-map": {
|
|
3887
|
-
"version": "0.
|
|
3888
|
-
"integrity": "sha512-
|
|
3403
|
+
"version": "0.6.1",
|
|
3404
|
+
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
|
3889
3405
|
"license": "BSD-3-Clause",
|
|
3890
3406
|
"engines": {
|
|
3891
3407
|
"node": ">=0.10.0"
|
|
@@ -3894,6 +3410,7 @@
|
|
|
3894
3410
|
"node_modules/source-map-js": {
|
|
3895
3411
|
"version": "1.2.1",
|
|
3896
3412
|
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
3413
|
+
"dev": true,
|
|
3897
3414
|
"license": "BSD-3-Clause",
|
|
3898
3415
|
"engines": {
|
|
3899
3416
|
"node": ">=0.10.0"
|
|
@@ -4128,24 +3645,24 @@
|
|
|
4128
3645
|
}
|
|
4129
3646
|
},
|
|
4130
3647
|
"node_modules/test-exclude/node_modules/brace-expansion": {
|
|
4131
|
-
"version": "5.0.
|
|
4132
|
-
"integrity": "sha512-
|
|
3648
|
+
"version": "5.0.9",
|
|
3649
|
+
"integrity": "sha512-ScQ4IuvIEF1TMlP7Zt+vjJ//9zlPb2SDcxWxM3bk8s6t6GGdJ7KO1dCcTidOPJKePW30LE/2cT7wCyPho9/Wxg==",
|
|
4133
3650
|
"dev": true,
|
|
4134
3651
|
"license": "MIT",
|
|
4135
3652
|
"dependencies": {
|
|
4136
3653
|
"balanced-match": "^4.0.2"
|
|
4137
3654
|
},
|
|
4138
3655
|
"engines": {
|
|
4139
|
-
"node": "
|
|
3656
|
+
"node": "20 || >=22"
|
|
4140
3657
|
}
|
|
4141
3658
|
},
|
|
4142
3659
|
"node_modules/test-exclude/node_modules/minimatch": {
|
|
4143
|
-
"version": "10.2.
|
|
4144
|
-
"integrity": "sha512-
|
|
3660
|
+
"version": "10.2.6",
|
|
3661
|
+
"integrity": "sha512-vpLQEs+VLCr1nU0BXS07maYoFwlDAH0gngQuuttxIwutDFEMHq2blX+8vpgxDdK3J1PwjCJiep77OitTZ4Ll1A==",
|
|
4145
3662
|
"dev": true,
|
|
4146
3663
|
"license": "BlueOak-1.0.0",
|
|
4147
3664
|
"dependencies": {
|
|
4148
|
-
"brace-expansion": "^5.0.
|
|
3665
|
+
"brace-expansion": "^5.0.8"
|
|
4149
3666
|
},
|
|
4150
3667
|
"engines": {
|
|
4151
3668
|
"node": "18 || 20 || >=22"
|
|
@@ -5131,7 +4648,6 @@
|
|
|
5131
4648
|
"node_modules/yallist": {
|
|
5132
4649
|
"version": "4.0.0",
|
|
5133
4650
|
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
|
|
5134
|
-
"dev": true,
|
|
5135
4651
|
"license": "ISC"
|
|
5136
4652
|
},
|
|
5137
4653
|
"node_modules/yaml": {
|