@caweb/webpack 1.3.19 → 1.3.21
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/changelog.txt +6 -0
- package/package.json +2 -2
- package/plugins/html/README.md +1 -1
- package/plugins/html/changelog.txt +7 -0
- package/plugins/html/helpers/logic/endsWith.js +1 -1
- package/plugins/html/index.js +4 -2
- package/plugins/html/package-lock.json +306 -198
- package/plugins/html/package.json +4 -9
package/changelog.txt
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caweb/webpack",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.21",
|
|
4
4
|
"description": "CAWebPublishing Webpack Configuration",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@caweb/a11y-webpack-plugin": "^1.0.9",
|
|
39
39
|
"@caweb/css-audit-webpack-plugin": "^1.0.12",
|
|
40
|
-
"@caweb/html-webpack-plugin": "^1.5.
|
|
40
|
+
"@caweb/html-webpack-plugin": "^1.5.22",
|
|
41
41
|
"@caweb/jshint-webpack-plugin": "^2.0.1"
|
|
42
42
|
}
|
|
43
43
|
}
|
package/plugins/html/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
This plugin utilizes the HTML Webpack Plugin to launch static generated pages using the CAWeb Template (formerly the California State Template)
|
|
2
2
|
|
|
3
|
-
<i>This package is inspired by [wp-scripts](https://www.npmjs.com/package/@wordpress/scripts)</i>
|
|
3
|
+
<i>This package is inspired by [wp-scripts](https://www.npmjs.com/package/@wordpress/scripts) and [html-webpack-plugin](https://www.npmjs.com/package/html-webpack-plugin)</i>
|
|
4
4
|
|
|
5
5
|
## Plugins Used
|
|
6
6
|
- [html-webpack-plugin](https://www.npmjs.com/package/html-webpack-plugin)
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
v1.5.22
|
|
2
|
+
- Fixed issue with alerts/utility header scroll height not being calculated correctly
|
|
3
|
+
|
|
4
|
+
v1.5.21
|
|
5
|
+
- Updated endsWith logic helper
|
|
6
|
+
- Fixed issue with header top position/page-container margin-top not updating when scrolling when elements exist above the header
|
|
7
|
+
|
|
1
8
|
v1.5.20
|
|
2
9
|
- Recompiled src files
|
|
3
10
|
|
package/plugins/html/index.js
CHANGED
|
@@ -68,10 +68,12 @@ class CAWebHTMLPlugin extends HtmlWebpackPlugin{
|
|
|
68
68
|
if( fs.existsSync( path.join(appPath, 'caweb.json') ) ){
|
|
69
69
|
|
|
70
70
|
let dataFile = JSON.parse( fs.readFileSync( path.join(appPath, 'caweb.json') ) );
|
|
71
|
-
|
|
71
|
+
|
|
72
|
+
// if there is a dataFile.site we merge the defaultOptions.templateParameters, user options.templateParameters, and the dataFile.site
|
|
72
73
|
if( dataFile.site ){
|
|
73
|
-
|
|
74
|
+
opts.templateParameters = {
|
|
74
75
|
...defaultOptions.templateParameters,
|
|
76
|
+
...opts.templateParameters,
|
|
75
77
|
...dataFile.site
|
|
76
78
|
}
|
|
77
79
|
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caweb/html-webpack-plugin",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.22",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@caweb/html-webpack-plugin",
|
|
9
|
-
"version": "1.5.
|
|
9
|
+
"version": "1.5.22",
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@caweb/a11y-webpack-plugin": "^1.0.9",
|
|
13
13
|
"@caweb/css-audit-webpack-plugin": "^1.0.12",
|
|
14
|
-
"@caweb/jshint-webpack-plugin": "^
|
|
15
|
-
"@wordpress/scripts": "^30.
|
|
14
|
+
"@caweb/jshint-webpack-plugin": "^2.0.1",
|
|
15
|
+
"@wordpress/scripts": "^30.9.0",
|
|
16
16
|
"css-minimizer-webpack-plugin": "^7.0.0",
|
|
17
17
|
"handlebars-loader": "^1.7.3",
|
|
18
18
|
"html-webpack-link-type-plugin": "^1.1.1",
|
|
@@ -1899,17 +1899,56 @@
|
|
|
1899
1899
|
"auditor": "bin/auditor/index.js"
|
|
1900
1900
|
}
|
|
1901
1901
|
},
|
|
1902
|
-
"node_modules/@caweb/
|
|
1902
|
+
"node_modules/@caweb/html-webpack-plugin": {
|
|
1903
|
+
"version": "1.5.21",
|
|
1904
|
+
"resolved": "https://registry.npmjs.org/@caweb/html-webpack-plugin/-/html-webpack-plugin-1.5.21.tgz",
|
|
1905
|
+
"integrity": "sha512-KpnE7cEYLhUntlIqClYxTkWOfgoscKyF4R/jVyK8ndqbZIzYye8PKq+6WZE/M20IoFQ9OgjR0oaQl7KppDGnQQ==",
|
|
1906
|
+
"license": "ISC",
|
|
1907
|
+
"peer": true,
|
|
1908
|
+
"dependencies": {
|
|
1909
|
+
"@caweb/a11y-webpack-plugin": "^1.0.9",
|
|
1910
|
+
"@caweb/css-audit-webpack-plugin": "^1.0.12",
|
|
1911
|
+
"@caweb/jshint-webpack-plugin": "^1.0.9",
|
|
1912
|
+
"@wordpress/scripts": "^30.8.1",
|
|
1913
|
+
"css-minimizer-webpack-plugin": "^7.0.0",
|
|
1914
|
+
"handlebars-loader": "^1.7.3",
|
|
1915
|
+
"html-webpack-link-type-plugin": "^1.1.1",
|
|
1916
|
+
"html-webpack-plugin": "^5.6.3",
|
|
1917
|
+
"html-webpack-skip-assets-plugin": "^1.0.4",
|
|
1918
|
+
"rtlcss-webpack-plugin": "^4.0.7",
|
|
1919
|
+
"webpack": "^5.97.1",
|
|
1920
|
+
"webpack-cli": "^6.0.1"
|
|
1921
|
+
}
|
|
1922
|
+
},
|
|
1923
|
+
"node_modules/@caweb/html-webpack-plugin/node_modules/@caweb/jshint-webpack-plugin": {
|
|
1903
1924
|
"version": "1.0.9",
|
|
1904
1925
|
"resolved": "https://registry.npmjs.org/@caweb/jshint-webpack-plugin/-/jshint-webpack-plugin-1.0.9.tgz",
|
|
1905
1926
|
"integrity": "sha512-n37AKVM3NjeSOINNfwkknx0nYqP39inhStOrUYU9sRnuihJw/eIhjxZ8MMkZuXE8TqJNuXKg5+vS1rWu/zHPVA==",
|
|
1906
1927
|
"license": "ISC",
|
|
1928
|
+
"peer": true,
|
|
1907
1929
|
"dependencies": {
|
|
1908
1930
|
"get-all-files": "^5.0.0",
|
|
1909
1931
|
"html-format": "^1.1.7",
|
|
1910
1932
|
"jshint": "^2.13.6"
|
|
1911
1933
|
}
|
|
1912
1934
|
},
|
|
1935
|
+
"node_modules/@caweb/jshint-webpack-plugin": {
|
|
1936
|
+
"version": "2.0.1",
|
|
1937
|
+
"resolved": "https://registry.npmjs.org/@caweb/jshint-webpack-plugin/-/jshint-webpack-plugin-2.0.1.tgz",
|
|
1938
|
+
"integrity": "sha512-zf9Bxq5g4pthaW7wltNqMc13Ui/lwy7mfsLgJVHMlSbUOzI+nlIQScNN3ToVPFAdyqN74N/UCZqT+bOWfBdTxA==",
|
|
1939
|
+
"license": "ISC",
|
|
1940
|
+
"dependencies": {
|
|
1941
|
+
"get-all-files": "^5.0.0",
|
|
1942
|
+
"handlebars": "^4.7.8",
|
|
1943
|
+
"html-format": "^1.1.7",
|
|
1944
|
+
"jshint": "^2.13.6",
|
|
1945
|
+
"webpack": "^5.97.1",
|
|
1946
|
+
"webpack-cli": "^6.0.1"
|
|
1947
|
+
},
|
|
1948
|
+
"peerDependencies": {
|
|
1949
|
+
"@caweb/html-webpack-plugin": "^1.5.20"
|
|
1950
|
+
}
|
|
1951
|
+
},
|
|
1913
1952
|
"node_modules/@csstools/css-parser-algorithms": {
|
|
1914
1953
|
"version": "3.0.4",
|
|
1915
1954
|
"resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.4.tgz",
|
|
@@ -2190,9 +2229,9 @@
|
|
|
2190
2229
|
}
|
|
2191
2230
|
},
|
|
2192
2231
|
"node_modules/@formatjs/icu-messageformat-parser": {
|
|
2193
|
-
"version": "2.
|
|
2194
|
-
"resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.
|
|
2195
|
-
"integrity": "sha512-
|
|
2232
|
+
"version": "2.11.0",
|
|
2233
|
+
"resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.11.0.tgz",
|
|
2234
|
+
"integrity": "sha512-Hp81uTjjdTk3FLh/dggU5NK7EIsVWc5/ZDWrIldmf2rBuPejuZ13CZ/wpVE2SToyi4EiroPTQ1XJcJuZFIxTtw==",
|
|
2196
2235
|
"license": "MIT",
|
|
2197
2236
|
"dependencies": {
|
|
2198
2237
|
"@formatjs/ecma402-abstract": "2.3.2",
|
|
@@ -3167,6 +3206,39 @@
|
|
|
3167
3206
|
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
3168
3207
|
}
|
|
3169
3208
|
},
|
|
3209
|
+
"node_modules/@keyv/serialize": {
|
|
3210
|
+
"version": "1.0.2",
|
|
3211
|
+
"resolved": "https://registry.npmjs.org/@keyv/serialize/-/serialize-1.0.2.tgz",
|
|
3212
|
+
"integrity": "sha512-+E/LyaAeuABniD/RvUezWVXKpeuvwLEA9//nE9952zBaOdBd2mQ3pPoM8cUe2X6IcMByfuSLzmYqnYshG60+HQ==",
|
|
3213
|
+
"license": "MIT",
|
|
3214
|
+
"dependencies": {
|
|
3215
|
+
"buffer": "^6.0.3"
|
|
3216
|
+
}
|
|
3217
|
+
},
|
|
3218
|
+
"node_modules/@keyv/serialize/node_modules/buffer": {
|
|
3219
|
+
"version": "6.0.3",
|
|
3220
|
+
"resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
|
|
3221
|
+
"integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
|
|
3222
|
+
"funding": [
|
|
3223
|
+
{
|
|
3224
|
+
"type": "github",
|
|
3225
|
+
"url": "https://github.com/sponsors/feross"
|
|
3226
|
+
},
|
|
3227
|
+
{
|
|
3228
|
+
"type": "patreon",
|
|
3229
|
+
"url": "https://www.patreon.com/feross"
|
|
3230
|
+
},
|
|
3231
|
+
{
|
|
3232
|
+
"type": "consulting",
|
|
3233
|
+
"url": "https://feross.org/support"
|
|
3234
|
+
}
|
|
3235
|
+
],
|
|
3236
|
+
"license": "MIT",
|
|
3237
|
+
"dependencies": {
|
|
3238
|
+
"base64-js": "^1.3.1",
|
|
3239
|
+
"ieee754": "^1.2.1"
|
|
3240
|
+
}
|
|
3241
|
+
},
|
|
3170
3242
|
"node_modules/@leichtgewicht/ip-codec": {
|
|
3171
3243
|
"version": "2.0.5",
|
|
3172
3244
|
"resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz",
|
|
@@ -3651,17 +3723,17 @@
|
|
|
3651
3723
|
}
|
|
3652
3724
|
},
|
|
3653
3725
|
"node_modules/@puppeteer/browsers/node_modules/tar-fs": {
|
|
3654
|
-
"version": "3.0.
|
|
3655
|
-
"resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.
|
|
3656
|
-
"integrity": "sha512-
|
|
3726
|
+
"version": "3.0.8",
|
|
3727
|
+
"resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.8.tgz",
|
|
3728
|
+
"integrity": "sha512-ZoROL70jptorGAlgAYiLoBLItEKw/fUxg9BSYK/dF/GAGYFJOJJJMvjPAKDJraCXFwadD456FCuvLWgfhMsPwg==",
|
|
3657
3729
|
"license": "MIT",
|
|
3658
3730
|
"dependencies": {
|
|
3659
3731
|
"pump": "^3.0.0",
|
|
3660
3732
|
"tar-stream": "^3.1.5"
|
|
3661
3733
|
},
|
|
3662
3734
|
"optionalDependencies": {
|
|
3663
|
-
"bare-fs": "^
|
|
3664
|
-
"bare-path": "^
|
|
3735
|
+
"bare-fs": "^4.0.1",
|
|
3736
|
+
"bare-path": "^3.0.0"
|
|
3665
3737
|
}
|
|
3666
3738
|
},
|
|
3667
3739
|
"node_modules/@puppeteer/browsers/node_modules/tar-stream": {
|
|
@@ -3682,41 +3754,41 @@
|
|
|
3682
3754
|
"license": "MIT"
|
|
3683
3755
|
},
|
|
3684
3756
|
"node_modules/@sentry-internal/tracing": {
|
|
3685
|
-
"version": "7.120.
|
|
3686
|
-
"resolved": "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.120.
|
|
3687
|
-
"integrity": "sha512-
|
|
3757
|
+
"version": "7.120.3",
|
|
3758
|
+
"resolved": "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.120.3.tgz",
|
|
3759
|
+
"integrity": "sha512-Ausx+Jw1pAMbIBHStoQ6ZqDZR60PsCByvHdw/jdH9AqPrNE9xlBSf9EwcycvmrzwyKspSLaB52grlje2cRIUMg==",
|
|
3688
3760
|
"license": "MIT",
|
|
3689
3761
|
"dependencies": {
|
|
3690
|
-
"@sentry/core": "7.120.
|
|
3691
|
-
"@sentry/types": "7.120.
|
|
3692
|
-
"@sentry/utils": "7.120.
|
|
3762
|
+
"@sentry/core": "7.120.3",
|
|
3763
|
+
"@sentry/types": "7.120.3",
|
|
3764
|
+
"@sentry/utils": "7.120.3"
|
|
3693
3765
|
},
|
|
3694
3766
|
"engines": {
|
|
3695
3767
|
"node": ">=8"
|
|
3696
3768
|
}
|
|
3697
3769
|
},
|
|
3698
3770
|
"node_modules/@sentry/core": {
|
|
3699
|
-
"version": "7.120.
|
|
3700
|
-
"resolved": "https://registry.npmjs.org/@sentry/core/-/core-7.120.
|
|
3701
|
-
"integrity": "sha512-
|
|
3771
|
+
"version": "7.120.3",
|
|
3772
|
+
"resolved": "https://registry.npmjs.org/@sentry/core/-/core-7.120.3.tgz",
|
|
3773
|
+
"integrity": "sha512-vyy11fCGpkGK3qI5DSXOjgIboBZTriw0YDx/0KyX5CjIjDDNgp5AGgpgFkfZyiYiaU2Ww3iFuKo4wHmBusz1uA==",
|
|
3702
3774
|
"license": "MIT",
|
|
3703
3775
|
"dependencies": {
|
|
3704
|
-
"@sentry/types": "7.120.
|
|
3705
|
-
"@sentry/utils": "7.120.
|
|
3776
|
+
"@sentry/types": "7.120.3",
|
|
3777
|
+
"@sentry/utils": "7.120.3"
|
|
3706
3778
|
},
|
|
3707
3779
|
"engines": {
|
|
3708
3780
|
"node": ">=8"
|
|
3709
3781
|
}
|
|
3710
3782
|
},
|
|
3711
3783
|
"node_modules/@sentry/integrations": {
|
|
3712
|
-
"version": "7.120.
|
|
3713
|
-
"resolved": "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.120.
|
|
3714
|
-
"integrity": "sha512-
|
|
3784
|
+
"version": "7.120.3",
|
|
3785
|
+
"resolved": "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.120.3.tgz",
|
|
3786
|
+
"integrity": "sha512-6i/lYp0BubHPDTg91/uxHvNui427df9r17SsIEXa2eKDwQ9gW2qRx5IWgvnxs2GV/GfSbwcx4swUB3RfEWrXrQ==",
|
|
3715
3787
|
"license": "MIT",
|
|
3716
3788
|
"dependencies": {
|
|
3717
|
-
"@sentry/core": "7.120.
|
|
3718
|
-
"@sentry/types": "7.120.
|
|
3719
|
-
"@sentry/utils": "7.120.
|
|
3789
|
+
"@sentry/core": "7.120.3",
|
|
3790
|
+
"@sentry/types": "7.120.3",
|
|
3791
|
+
"@sentry/utils": "7.120.3",
|
|
3720
3792
|
"localforage": "^1.8.1"
|
|
3721
3793
|
},
|
|
3722
3794
|
"engines": {
|
|
@@ -3724,37 +3796,37 @@
|
|
|
3724
3796
|
}
|
|
3725
3797
|
},
|
|
3726
3798
|
"node_modules/@sentry/node": {
|
|
3727
|
-
"version": "7.120.
|
|
3728
|
-
"resolved": "https://registry.npmjs.org/@sentry/node/-/node-7.120.
|
|
3729
|
-
"integrity": "sha512-
|
|
3799
|
+
"version": "7.120.3",
|
|
3800
|
+
"resolved": "https://registry.npmjs.org/@sentry/node/-/node-7.120.3.tgz",
|
|
3801
|
+
"integrity": "sha512-t+QtekZedEfiZjbkRAk1QWJPnJlFBH/ti96tQhEq7wmlk3VszDXraZvLWZA0P2vXyglKzbWRGkT31aD3/kX+5Q==",
|
|
3730
3802
|
"license": "MIT",
|
|
3731
3803
|
"dependencies": {
|
|
3732
|
-
"@sentry-internal/tracing": "7.120.
|
|
3733
|
-
"@sentry/core": "7.120.
|
|
3734
|
-
"@sentry/integrations": "7.120.
|
|
3735
|
-
"@sentry/types": "7.120.
|
|
3736
|
-
"@sentry/utils": "7.120.
|
|
3804
|
+
"@sentry-internal/tracing": "7.120.3",
|
|
3805
|
+
"@sentry/core": "7.120.3",
|
|
3806
|
+
"@sentry/integrations": "7.120.3",
|
|
3807
|
+
"@sentry/types": "7.120.3",
|
|
3808
|
+
"@sentry/utils": "7.120.3"
|
|
3737
3809
|
},
|
|
3738
3810
|
"engines": {
|
|
3739
3811
|
"node": ">=8"
|
|
3740
3812
|
}
|
|
3741
3813
|
},
|
|
3742
3814
|
"node_modules/@sentry/types": {
|
|
3743
|
-
"version": "7.120.
|
|
3744
|
-
"resolved": "https://registry.npmjs.org/@sentry/types/-/types-7.120.
|
|
3745
|
-
"integrity": "sha512-
|
|
3815
|
+
"version": "7.120.3",
|
|
3816
|
+
"resolved": "https://registry.npmjs.org/@sentry/types/-/types-7.120.3.tgz",
|
|
3817
|
+
"integrity": "sha512-C4z+3kGWNFJ303FC+FxAd4KkHvxpNFYAFN8iMIgBwJdpIl25KZ8Q/VdGn0MLLUEHNLvjob0+wvwlcRBBNLXOow==",
|
|
3746
3818
|
"license": "MIT",
|
|
3747
3819
|
"engines": {
|
|
3748
3820
|
"node": ">=8"
|
|
3749
3821
|
}
|
|
3750
3822
|
},
|
|
3751
3823
|
"node_modules/@sentry/utils": {
|
|
3752
|
-
"version": "7.120.
|
|
3753
|
-
"resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-7.120.
|
|
3754
|
-
"integrity": "sha512-
|
|
3824
|
+
"version": "7.120.3",
|
|
3825
|
+
"resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-7.120.3.tgz",
|
|
3826
|
+
"integrity": "sha512-UDAOQJtJDxZHQ5Nm1olycBIsz2wdGX8SdzyGVHmD8EOQYAeDZQyIlQYohDe9nazdIOQLZCIc3fU0G9gqVLkaGQ==",
|
|
3755
3827
|
"license": "MIT",
|
|
3756
3828
|
"dependencies": {
|
|
3757
|
-
"@sentry/types": "7.120.
|
|
3829
|
+
"@sentry/types": "7.120.3"
|
|
3758
3830
|
},
|
|
3759
3831
|
"engines": {
|
|
3760
3832
|
"node": ">=8"
|
|
@@ -4998,9 +5070,9 @@
|
|
|
4998
5070
|
}
|
|
4999
5071
|
},
|
|
5000
5072
|
"node_modules/@wordpress/babel-preset-default": {
|
|
5001
|
-
"version": "8.
|
|
5002
|
-
"resolved": "https://registry.npmjs.org/@wordpress/babel-preset-default/-/babel-preset-default-8.
|
|
5003
|
-
"integrity": "sha512-
|
|
5073
|
+
"version": "8.16.0",
|
|
5074
|
+
"resolved": "https://registry.npmjs.org/@wordpress/babel-preset-default/-/babel-preset-default-8.16.0.tgz",
|
|
5075
|
+
"integrity": "sha512-CPAMxQ5eMmsRNJN0edUZvsJDnmALQFGbWyCxsJiJJ/0LFi1lYFC7r5YGcJXVVD+oX9L908NZpxwsQBHb6gkxig==",
|
|
5004
5076
|
"license": "GPL-2.0-or-later",
|
|
5005
5077
|
"dependencies": {
|
|
5006
5078
|
"@babel/core": "7.25.7",
|
|
@@ -5009,8 +5081,8 @@
|
|
|
5009
5081
|
"@babel/preset-env": "7.25.7",
|
|
5010
5082
|
"@babel/preset-typescript": "7.25.7",
|
|
5011
5083
|
"@babel/runtime": "7.25.7",
|
|
5012
|
-
"@wordpress/browserslist-config": "^6.
|
|
5013
|
-
"@wordpress/warning": "^3.
|
|
5084
|
+
"@wordpress/browserslist-config": "^6.16.0",
|
|
5085
|
+
"@wordpress/warning": "^3.16.0",
|
|
5014
5086
|
"browserslist": "^4.21.10",
|
|
5015
5087
|
"core-js": "^3.31.0",
|
|
5016
5088
|
"react": "^18.3.0"
|
|
@@ -5180,9 +5252,9 @@
|
|
|
5180
5252
|
}
|
|
5181
5253
|
},
|
|
5182
5254
|
"node_modules/@wordpress/base-styles": {
|
|
5183
|
-
"version": "5.
|
|
5184
|
-
"resolved": "https://registry.npmjs.org/@wordpress/base-styles/-/base-styles-5.
|
|
5185
|
-
"integrity": "sha512-
|
|
5255
|
+
"version": "5.16.0",
|
|
5256
|
+
"resolved": "https://registry.npmjs.org/@wordpress/base-styles/-/base-styles-5.16.0.tgz",
|
|
5257
|
+
"integrity": "sha512-CAaRCkoJ83+XeObkY1aiswInVHCm5JBFVCCtkEVvRlbqNipHCMyhA3rg501Ww4AOYxsX9r2rvNbGaAPMGc6oug==",
|
|
5186
5258
|
"license": "GPL-2.0-or-later",
|
|
5187
5259
|
"engines": {
|
|
5188
5260
|
"node": ">=18.12.0",
|
|
@@ -5190,9 +5262,9 @@
|
|
|
5190
5262
|
}
|
|
5191
5263
|
},
|
|
5192
5264
|
"node_modules/@wordpress/browserslist-config": {
|
|
5193
|
-
"version": "6.
|
|
5194
|
-
"resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-6.
|
|
5195
|
-
"integrity": "sha512-
|
|
5265
|
+
"version": "6.16.0",
|
|
5266
|
+
"resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-6.16.0.tgz",
|
|
5267
|
+
"integrity": "sha512-ppjgUOjCFwLjH5XCDAfavRkIAj9DKEVGj12YMGL+dzSikbDU9L8VnMT1p08G1bAcBkTRLtBX8KkJJdyUI1JGsQ==",
|
|
5196
5268
|
"license": "GPL-2.0-or-later",
|
|
5197
5269
|
"engines": {
|
|
5198
5270
|
"node": ">=18.12.0",
|
|
@@ -5200,9 +5272,9 @@
|
|
|
5200
5272
|
}
|
|
5201
5273
|
},
|
|
5202
5274
|
"node_modules/@wordpress/dependency-extraction-webpack-plugin": {
|
|
5203
|
-
"version": "6.
|
|
5204
|
-
"resolved": "https://registry.npmjs.org/@wordpress/dependency-extraction-webpack-plugin/-/dependency-extraction-webpack-plugin-6.
|
|
5205
|
-
"integrity": "sha512-
|
|
5275
|
+
"version": "6.16.0",
|
|
5276
|
+
"resolved": "https://registry.npmjs.org/@wordpress/dependency-extraction-webpack-plugin/-/dependency-extraction-webpack-plugin-6.16.0.tgz",
|
|
5277
|
+
"integrity": "sha512-AU6SFATdbUJsd/hqD6wUaZxbikibJ4L7RGpQ2MPUsXxXZCJU8pfPE3WWIOM1VemG4dJRJO+jk0lG8uH9pwdsfA==",
|
|
5206
5278
|
"license": "GPL-2.0-or-later",
|
|
5207
5279
|
"dependencies": {
|
|
5208
5280
|
"json2php": "^0.0.7"
|
|
@@ -5222,9 +5294,9 @@
|
|
|
5222
5294
|
"license": "BSD"
|
|
5223
5295
|
},
|
|
5224
5296
|
"node_modules/@wordpress/e2e-test-utils-playwright": {
|
|
5225
|
-
"version": "1.
|
|
5226
|
-
"resolved": "https://registry.npmjs.org/@wordpress/e2e-test-utils-playwright/-/e2e-test-utils-playwright-1.
|
|
5227
|
-
"integrity": "sha512-
|
|
5297
|
+
"version": "1.16.0",
|
|
5298
|
+
"resolved": "https://registry.npmjs.org/@wordpress/e2e-test-utils-playwright/-/e2e-test-utils-playwright-1.16.0.tgz",
|
|
5299
|
+
"integrity": "sha512-xA1sbiQoqfk530JMAFGpThGbCjGeVaVitEdB3WYWnHY8JGmI6l5SeWaen2GlD4zbbCS+HE0Kn0sof1h5B9R26A==",
|
|
5228
5300
|
"license": "GPL-2.0-or-later",
|
|
5229
5301
|
"dependencies": {
|
|
5230
5302
|
"change-case": "^4.1.2",
|
|
@@ -5243,16 +5315,16 @@
|
|
|
5243
5315
|
}
|
|
5244
5316
|
},
|
|
5245
5317
|
"node_modules/@wordpress/eslint-plugin": {
|
|
5246
|
-
"version": "22.
|
|
5247
|
-
"resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-22.
|
|
5248
|
-
"integrity": "sha512-
|
|
5318
|
+
"version": "22.2.0",
|
|
5319
|
+
"resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-22.2.0.tgz",
|
|
5320
|
+
"integrity": "sha512-JKs2tEpkg6txe1emR+P7gw9OrSXvu89TMHuN1uk0wxdJeEqoF7HcxTdJBEaMHCz5HFhBHeuI5vShtX/WN6jf3g==",
|
|
5249
5321
|
"license": "GPL-2.0-or-later",
|
|
5250
5322
|
"dependencies": {
|
|
5251
5323
|
"@babel/eslint-parser": "7.25.7",
|
|
5252
5324
|
"@typescript-eslint/eslint-plugin": "^6.4.1",
|
|
5253
5325
|
"@typescript-eslint/parser": "^6.4.1",
|
|
5254
|
-
"@wordpress/babel-preset-default": "^8.
|
|
5255
|
-
"@wordpress/prettier-config": "^4.
|
|
5326
|
+
"@wordpress/babel-preset-default": "^8.16.0",
|
|
5327
|
+
"@wordpress/prettier-config": "^4.16.0",
|
|
5256
5328
|
"cosmiconfig": "^7.0.0",
|
|
5257
5329
|
"eslint-config-prettier": "^8.3.0",
|
|
5258
5330
|
"eslint-plugin-import": "^2.25.2",
|
|
@@ -5329,9 +5401,9 @@
|
|
|
5329
5401
|
}
|
|
5330
5402
|
},
|
|
5331
5403
|
"node_modules/@wordpress/jest-console": {
|
|
5332
|
-
"version": "8.
|
|
5333
|
-
"resolved": "https://registry.npmjs.org/@wordpress/jest-console/-/jest-console-8.
|
|
5334
|
-
"integrity": "sha512-
|
|
5404
|
+
"version": "8.16.0",
|
|
5405
|
+
"resolved": "https://registry.npmjs.org/@wordpress/jest-console/-/jest-console-8.16.0.tgz",
|
|
5406
|
+
"integrity": "sha512-GFwoPBeOir9lV0ZCrkOapl7us+NqYphjeTRhZajNYr+grUCtvJYY0XzGZd8QuXKD9R5yBK42jgb4/9vc5tL2TA==",
|
|
5335
5407
|
"license": "GPL-2.0-or-later",
|
|
5336
5408
|
"dependencies": {
|
|
5337
5409
|
"@babel/runtime": "7.25.7",
|
|
@@ -5346,12 +5418,12 @@
|
|
|
5346
5418
|
}
|
|
5347
5419
|
},
|
|
5348
5420
|
"node_modules/@wordpress/jest-preset-default": {
|
|
5349
|
-
"version": "12.
|
|
5350
|
-
"resolved": "https://registry.npmjs.org/@wordpress/jest-preset-default/-/jest-preset-default-12.
|
|
5351
|
-
"integrity": "sha512-
|
|
5421
|
+
"version": "12.16.0",
|
|
5422
|
+
"resolved": "https://registry.npmjs.org/@wordpress/jest-preset-default/-/jest-preset-default-12.16.0.tgz",
|
|
5423
|
+
"integrity": "sha512-2GXwvdFiSjpzCxXs8TrzPqAechoCmWvWqijs1ONRDNm8HB6Vq+2sFo3ndCQ9ISQCb4fRUb2LF+/hgVRgIpDmVg==",
|
|
5352
5424
|
"license": "GPL-2.0-or-later",
|
|
5353
5425
|
"dependencies": {
|
|
5354
|
-
"@wordpress/jest-console": "^8.
|
|
5426
|
+
"@wordpress/jest-console": "^8.16.0",
|
|
5355
5427
|
"babel-jest": "29.7.0"
|
|
5356
5428
|
},
|
|
5357
5429
|
"engines": {
|
|
@@ -5364,9 +5436,9 @@
|
|
|
5364
5436
|
}
|
|
5365
5437
|
},
|
|
5366
5438
|
"node_modules/@wordpress/npm-package-json-lint-config": {
|
|
5367
|
-
"version": "5.
|
|
5368
|
-
"resolved": "https://registry.npmjs.org/@wordpress/npm-package-json-lint-config/-/npm-package-json-lint-config-5.
|
|
5369
|
-
"integrity": "sha512-
|
|
5439
|
+
"version": "5.16.0",
|
|
5440
|
+
"resolved": "https://registry.npmjs.org/@wordpress/npm-package-json-lint-config/-/npm-package-json-lint-config-5.16.0.tgz",
|
|
5441
|
+
"integrity": "sha512-TCcaVQx76erSPWoGctLYUSCx2fOmT8vVBR2w8O/2q6+qEO4G4FiCYhj2tYliGNH/H9hQX/6QvfIRWIEoCnvMXQ==",
|
|
5370
5442
|
"license": "GPL-2.0-or-later",
|
|
5371
5443
|
"engines": {
|
|
5372
5444
|
"node": ">=18.12.0",
|
|
@@ -5377,12 +5449,12 @@
|
|
|
5377
5449
|
}
|
|
5378
5450
|
},
|
|
5379
5451
|
"node_modules/@wordpress/postcss-plugins-preset": {
|
|
5380
|
-
"version": "5.
|
|
5381
|
-
"resolved": "https://registry.npmjs.org/@wordpress/postcss-plugins-preset/-/postcss-plugins-preset-5.
|
|
5382
|
-
"integrity": "sha512
|
|
5452
|
+
"version": "5.16.0",
|
|
5453
|
+
"resolved": "https://registry.npmjs.org/@wordpress/postcss-plugins-preset/-/postcss-plugins-preset-5.16.0.tgz",
|
|
5454
|
+
"integrity": "sha512-+rVpUQo+HXGFBvCLox45OxwT/U4hsDD8UpcDh8MAwFwrYf33GUGgdAhO5i4V3RyJiMmiZpsemkHFjlOg10kUjQ==",
|
|
5383
5455
|
"license": "GPL-2.0-or-later",
|
|
5384
5456
|
"dependencies": {
|
|
5385
|
-
"@wordpress/base-styles": "^5.
|
|
5457
|
+
"@wordpress/base-styles": "^5.16.0",
|
|
5386
5458
|
"autoprefixer": "^10.4.20"
|
|
5387
5459
|
},
|
|
5388
5460
|
"engines": {
|
|
@@ -5394,9 +5466,9 @@
|
|
|
5394
5466
|
}
|
|
5395
5467
|
},
|
|
5396
5468
|
"node_modules/@wordpress/prettier-config": {
|
|
5397
|
-
"version": "4.
|
|
5398
|
-
"resolved": "https://registry.npmjs.org/@wordpress/prettier-config/-/prettier-config-4.
|
|
5399
|
-
"integrity": "sha512-
|
|
5469
|
+
"version": "4.16.0",
|
|
5470
|
+
"resolved": "https://registry.npmjs.org/@wordpress/prettier-config/-/prettier-config-4.16.0.tgz",
|
|
5471
|
+
"integrity": "sha512-raaEW2x+pPfIYXF7RUJGEH8zeYWd4esIE0bJbKTAJV0yM+RE/DOWsGLGPiVvLEAAPg2AkIZ7oX0UPOYsBrsBqw==",
|
|
5400
5472
|
"license": "GPL-2.0-or-later",
|
|
5401
5473
|
"engines": {
|
|
5402
5474
|
"node": ">=18.12.0",
|
|
@@ -5407,24 +5479,24 @@
|
|
|
5407
5479
|
}
|
|
5408
5480
|
},
|
|
5409
5481
|
"node_modules/@wordpress/scripts": {
|
|
5410
|
-
"version": "30.
|
|
5411
|
-
"resolved": "https://registry.npmjs.org/@wordpress/scripts/-/scripts-30.
|
|
5412
|
-
"integrity": "sha512-
|
|
5482
|
+
"version": "30.9.0",
|
|
5483
|
+
"resolved": "https://registry.npmjs.org/@wordpress/scripts/-/scripts-30.9.0.tgz",
|
|
5484
|
+
"integrity": "sha512-tyfzDlI4Zplnw5BdMaO5QgItzEU6FsxK3bf2yZrx+fLjKwLndiTWk6ObDEW+tIrwWpCZv8d54z9mNMwIwgXVow==",
|
|
5413
5485
|
"license": "GPL-2.0-or-later",
|
|
5414
5486
|
"dependencies": {
|
|
5415
5487
|
"@babel/core": "7.25.7",
|
|
5416
5488
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
|
|
5417
5489
|
"@svgr/webpack": "^8.0.1",
|
|
5418
|
-
"@wordpress/babel-preset-default": "^8.
|
|
5419
|
-
"@wordpress/browserslist-config": "^6.
|
|
5420
|
-
"@wordpress/dependency-extraction-webpack-plugin": "^6.
|
|
5421
|
-
"@wordpress/e2e-test-utils-playwright": "^1.
|
|
5422
|
-
"@wordpress/eslint-plugin": "^22.
|
|
5423
|
-
"@wordpress/jest-preset-default": "^12.
|
|
5424
|
-
"@wordpress/npm-package-json-lint-config": "^5.
|
|
5425
|
-
"@wordpress/postcss-plugins-preset": "^5.
|
|
5426
|
-
"@wordpress/prettier-config": "^4.
|
|
5427
|
-
"@wordpress/stylelint-config": "^23.
|
|
5490
|
+
"@wordpress/babel-preset-default": "^8.16.0",
|
|
5491
|
+
"@wordpress/browserslist-config": "^6.16.0",
|
|
5492
|
+
"@wordpress/dependency-extraction-webpack-plugin": "^6.16.0",
|
|
5493
|
+
"@wordpress/e2e-test-utils-playwright": "^1.16.0",
|
|
5494
|
+
"@wordpress/eslint-plugin": "^22.2.0",
|
|
5495
|
+
"@wordpress/jest-preset-default": "^12.16.0",
|
|
5496
|
+
"@wordpress/npm-package-json-lint-config": "^5.16.0",
|
|
5497
|
+
"@wordpress/postcss-plugins-preset": "^5.16.0",
|
|
5498
|
+
"@wordpress/prettier-config": "^4.16.0",
|
|
5499
|
+
"@wordpress/stylelint-config": "^23.8.0",
|
|
5428
5500
|
"adm-zip": "^0.5.9",
|
|
5429
5501
|
"babel-jest": "29.7.0",
|
|
5430
5502
|
"babel-loader": "9.2.1",
|
|
@@ -5481,7 +5553,7 @@
|
|
|
5481
5553
|
"npm": ">=8.19.2"
|
|
5482
5554
|
},
|
|
5483
5555
|
"peerDependencies": {
|
|
5484
|
-
"@playwright/test": "^1.
|
|
5556
|
+
"@playwright/test": "^1.49.1",
|
|
5485
5557
|
"react": "^18.0.0",
|
|
5486
5558
|
"react-dom": "^18.0.0"
|
|
5487
5559
|
}
|
|
@@ -5704,9 +5776,9 @@
|
|
|
5704
5776
|
}
|
|
5705
5777
|
},
|
|
5706
5778
|
"node_modules/@wordpress/stylelint-config": {
|
|
5707
|
-
"version": "23.
|
|
5708
|
-
"resolved": "https://registry.npmjs.org/@wordpress/stylelint-config/-/stylelint-config-23.
|
|
5709
|
-
"integrity": "sha512-
|
|
5779
|
+
"version": "23.8.0",
|
|
5780
|
+
"resolved": "https://registry.npmjs.org/@wordpress/stylelint-config/-/stylelint-config-23.8.0.tgz",
|
|
5781
|
+
"integrity": "sha512-Fqf8GVZlaflq2n7JMxEk+KfVhgbDgdx/qs/R6ZxnR7RTC6c9RqGxSdUqdhtJyVkoNB3pWRG/aD1h7abKVEO3dA==",
|
|
5710
5782
|
"license": "MIT",
|
|
5711
5783
|
"dependencies": {
|
|
5712
5784
|
"@stylistic/stylelint-plugin": "^3.0.1",
|
|
@@ -5722,9 +5794,9 @@
|
|
|
5722
5794
|
}
|
|
5723
5795
|
},
|
|
5724
5796
|
"node_modules/@wordpress/warning": {
|
|
5725
|
-
"version": "3.
|
|
5726
|
-
"resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-3.
|
|
5727
|
-
"integrity": "sha512-
|
|
5797
|
+
"version": "3.16.0",
|
|
5798
|
+
"resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-3.16.0.tgz",
|
|
5799
|
+
"integrity": "sha512-XsgqRPvB+VSecXnD3VfvJJxhcdTTX4EkgdzvWspmQnw0rNCV636KByZVgolzYhvr3La9EgqO+MqXzwvPHg/xfQ==",
|
|
5728
5800
|
"license": "GPL-2.0-or-later",
|
|
5729
5801
|
"engines": {
|
|
5730
5802
|
"node": ">=18.12.0",
|
|
@@ -6644,49 +6716,67 @@
|
|
|
6644
6716
|
"license": "MIT"
|
|
6645
6717
|
},
|
|
6646
6718
|
"node_modules/bare-events": {
|
|
6647
|
-
"version": "2.5.
|
|
6648
|
-
"resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.
|
|
6649
|
-
"integrity": "sha512
|
|
6719
|
+
"version": "2.5.4",
|
|
6720
|
+
"resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.4.tgz",
|
|
6721
|
+
"integrity": "sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==",
|
|
6650
6722
|
"license": "Apache-2.0",
|
|
6651
6723
|
"optional": true
|
|
6652
6724
|
},
|
|
6653
6725
|
"node_modules/bare-fs": {
|
|
6654
|
-
"version": "
|
|
6655
|
-
"resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-
|
|
6656
|
-
"integrity": "sha512-
|
|
6726
|
+
"version": "4.0.1",
|
|
6727
|
+
"resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.0.1.tgz",
|
|
6728
|
+
"integrity": "sha512-ilQs4fm/l9eMfWY2dY0WCIUplSUp7U0CT1vrqMg1MUdeZl4fypu5UP0XcDBK5WBQPJAKP1b7XEodISmekH/CEg==",
|
|
6657
6729
|
"license": "Apache-2.0",
|
|
6658
6730
|
"optional": true,
|
|
6659
6731
|
"dependencies": {
|
|
6660
6732
|
"bare-events": "^2.0.0",
|
|
6661
|
-
"bare-path": "^
|
|
6733
|
+
"bare-path": "^3.0.0",
|
|
6662
6734
|
"bare-stream": "^2.0.0"
|
|
6735
|
+
},
|
|
6736
|
+
"engines": {
|
|
6737
|
+
"bare": ">=1.7.0"
|
|
6663
6738
|
}
|
|
6664
6739
|
},
|
|
6665
6740
|
"node_modules/bare-os": {
|
|
6666
|
-
"version": "
|
|
6667
|
-
"resolved": "https://registry.npmjs.org/bare-os/-/bare-os-
|
|
6668
|
-
"integrity": "sha512-
|
|
6741
|
+
"version": "3.4.0",
|
|
6742
|
+
"resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.4.0.tgz",
|
|
6743
|
+
"integrity": "sha512-9Ous7UlnKbe3fMi7Y+qh0DwAup6A1JkYgPnjvMDNOlmnxNRQvQ/7Nst+OnUQKzk0iAT0m9BisbDVp9gCv8+ETA==",
|
|
6669
6744
|
"license": "Apache-2.0",
|
|
6670
|
-
"optional": true
|
|
6745
|
+
"optional": true,
|
|
6746
|
+
"engines": {
|
|
6747
|
+
"bare": ">=1.6.0"
|
|
6748
|
+
}
|
|
6671
6749
|
},
|
|
6672
6750
|
"node_modules/bare-path": {
|
|
6673
|
-
"version": "
|
|
6674
|
-
"resolved": "https://registry.npmjs.org/bare-path/-/bare-path-
|
|
6675
|
-
"integrity": "sha512-
|
|
6751
|
+
"version": "3.0.0",
|
|
6752
|
+
"resolved": "https://registry.npmjs.org/bare-path/-/bare-path-3.0.0.tgz",
|
|
6753
|
+
"integrity": "sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==",
|
|
6676
6754
|
"license": "Apache-2.0",
|
|
6677
6755
|
"optional": true,
|
|
6678
6756
|
"dependencies": {
|
|
6679
|
-
"bare-os": "^
|
|
6757
|
+
"bare-os": "^3.0.1"
|
|
6680
6758
|
}
|
|
6681
6759
|
},
|
|
6682
6760
|
"node_modules/bare-stream": {
|
|
6683
|
-
"version": "2.6.
|
|
6684
|
-
"resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.6.
|
|
6685
|
-
"integrity": "sha512-
|
|
6761
|
+
"version": "2.6.4",
|
|
6762
|
+
"resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.6.4.tgz",
|
|
6763
|
+
"integrity": "sha512-G6i3A74FjNq4nVrrSTUz5h3vgXzBJnjmWAVlBWaZETkgu+LgKd7AiyOml3EDJY1AHlIbBHKDXE+TUT53Ff8OaA==",
|
|
6686
6764
|
"license": "Apache-2.0",
|
|
6687
6765
|
"optional": true,
|
|
6688
6766
|
"dependencies": {
|
|
6689
6767
|
"streamx": "^2.21.0"
|
|
6768
|
+
},
|
|
6769
|
+
"peerDependencies": {
|
|
6770
|
+
"bare-buffer": "*",
|
|
6771
|
+
"bare-events": "*"
|
|
6772
|
+
},
|
|
6773
|
+
"peerDependenciesMeta": {
|
|
6774
|
+
"bare-buffer": {
|
|
6775
|
+
"optional": true
|
|
6776
|
+
},
|
|
6777
|
+
"bare-events": {
|
|
6778
|
+
"optional": true
|
|
6779
|
+
}
|
|
6690
6780
|
}
|
|
6691
6781
|
},
|
|
6692
6782
|
"node_modules/base64-js": {
|
|
@@ -7027,6 +7117,25 @@
|
|
|
7027
7117
|
"node": ">= 0.8"
|
|
7028
7118
|
}
|
|
7029
7119
|
},
|
|
7120
|
+
"node_modules/cacheable": {
|
|
7121
|
+
"version": "1.8.7",
|
|
7122
|
+
"resolved": "https://registry.npmjs.org/cacheable/-/cacheable-1.8.7.tgz",
|
|
7123
|
+
"integrity": "sha512-AbfG7dAuYNjYxFUtL1lAqmlWdxczCJ47w7cFjhGcnGnUdwSo6VgmSojfoW3tUI12HUkgTJ5kqj78yyq6TsFtlg==",
|
|
7124
|
+
"license": "MIT",
|
|
7125
|
+
"dependencies": {
|
|
7126
|
+
"hookified": "^1.6.0",
|
|
7127
|
+
"keyv": "^5.2.3"
|
|
7128
|
+
}
|
|
7129
|
+
},
|
|
7130
|
+
"node_modules/cacheable/node_modules/keyv": {
|
|
7131
|
+
"version": "5.2.3",
|
|
7132
|
+
"resolved": "https://registry.npmjs.org/keyv/-/keyv-5.2.3.tgz",
|
|
7133
|
+
"integrity": "sha512-AGKecUfzrowabUv0bH1RIR5Vf7w+l4S3xtQAypKaUpTdIR1EbrAcTxHCrpo9Q+IWeUlFE2palRtgIQcgm+PQJw==",
|
|
7134
|
+
"license": "MIT",
|
|
7135
|
+
"dependencies": {
|
|
7136
|
+
"@keyv/serialize": "^1.0.2"
|
|
7137
|
+
}
|
|
7138
|
+
},
|
|
7030
7139
|
"node_modules/call-bind": {
|
|
7031
7140
|
"version": "1.0.8",
|
|
7032
7141
|
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
|
|
@@ -7359,13 +7468,12 @@
|
|
|
7359
7468
|
}
|
|
7360
7469
|
},
|
|
7361
7470
|
"node_modules/chromium-bidi": {
|
|
7362
|
-
"version": "0.
|
|
7363
|
-
"resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.
|
|
7364
|
-
"integrity": "sha512-
|
|
7471
|
+
"version": "0.11.0",
|
|
7472
|
+
"resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.11.0.tgz",
|
|
7473
|
+
"integrity": "sha512-6CJWHkNRoyZyjV9Rwv2lYONZf1Xm0IuDyNq97nwSsxxP3wf5Bwy15K5rOvVKMtJ127jJBmxFUanSAOjgFRxgrA==",
|
|
7365
7474
|
"license": "Apache-2.0",
|
|
7366
7475
|
"dependencies": {
|
|
7367
7476
|
"mitt": "3.0.1",
|
|
7368
|
-
"urlpattern-polyfill": "10.0.0",
|
|
7369
7477
|
"zod": "3.23.8"
|
|
7370
7478
|
},
|
|
7371
7479
|
"peerDependencies": {
|
|
@@ -10276,9 +10384,9 @@
|
|
|
10276
10384
|
}
|
|
10277
10385
|
},
|
|
10278
10386
|
"node_modules/eslint-plugin-prettier": {
|
|
10279
|
-
"version": "5.2.
|
|
10280
|
-
"resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.
|
|
10281
|
-
"integrity": "sha512-
|
|
10387
|
+
"version": "5.2.3",
|
|
10388
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.3.tgz",
|
|
10389
|
+
"integrity": "sha512-qJ+y0FfCp/mQYQ/vWQ3s7eUlFEL4PyKfAJxsnYTJ4YT73nsJBWqmEpFryxV9OeUiqmsTsYJ5Y+KDNaeP31wrRw==",
|
|
10282
10390
|
"license": "MIT",
|
|
10283
10391
|
"dependencies": {
|
|
10284
10392
|
"prettier-linter-helpers": "^1.0.0",
|
|
@@ -10306,9 +10414,9 @@
|
|
|
10306
10414
|
}
|
|
10307
10415
|
},
|
|
10308
10416
|
"node_modules/eslint-plugin-react": {
|
|
10309
|
-
"version": "7.37.
|
|
10310
|
-
"resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.
|
|
10311
|
-
"integrity": "sha512-
|
|
10417
|
+
"version": "7.37.4",
|
|
10418
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.4.tgz",
|
|
10419
|
+
"integrity": "sha512-BGP0jRmfYyvOyvMoRX/uoUeW+GqNj9y16bPQzqAHf3AYII/tDs+jMN0dBVkl88/OZwNGwrVFxE7riHsXVfy/LQ==",
|
|
10312
10420
|
"license": "MIT",
|
|
10313
10421
|
"dependencies": {
|
|
10314
10422
|
"array-includes": "^3.1.8",
|
|
@@ -10949,16 +11057,16 @@
|
|
|
10949
11057
|
"license": "MIT"
|
|
10950
11058
|
},
|
|
10951
11059
|
"node_modules/fast-glob": {
|
|
10952
|
-
"version": "3.3.
|
|
10953
|
-
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.
|
|
10954
|
-
"integrity": "sha512-
|
|
11060
|
+
"version": "3.3.3",
|
|
11061
|
+
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
|
|
11062
|
+
"integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
|
|
10955
11063
|
"license": "MIT",
|
|
10956
11064
|
"dependencies": {
|
|
10957
11065
|
"@nodelib/fs.stat": "^2.0.2",
|
|
10958
11066
|
"@nodelib/fs.walk": "^1.2.3",
|
|
10959
11067
|
"glob-parent": "^5.1.2",
|
|
10960
11068
|
"merge2": "^1.3.0",
|
|
10961
|
-
"micromatch": "^4.0.
|
|
11069
|
+
"micromatch": "^4.0.8"
|
|
10962
11070
|
},
|
|
10963
11071
|
"engines": {
|
|
10964
11072
|
"node": ">=8.6.0"
|
|
@@ -11863,7 +11971,6 @@
|
|
|
11863
11971
|
"resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz",
|
|
11864
11972
|
"integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==",
|
|
11865
11973
|
"license": "MIT",
|
|
11866
|
-
"peer": true,
|
|
11867
11974
|
"dependencies": {
|
|
11868
11975
|
"minimist": "^1.2.5",
|
|
11869
11976
|
"neo-async": "^2.6.2",
|
|
@@ -11926,7 +12033,6 @@
|
|
|
11926
12033
|
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
|
11927
12034
|
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
|
11928
12035
|
"license": "BSD-3-Clause",
|
|
11929
|
-
"peer": true,
|
|
11930
12036
|
"engines": {
|
|
11931
12037
|
"node": ">=0.10.0"
|
|
11932
12038
|
}
|
|
@@ -12058,6 +12164,12 @@
|
|
|
12058
12164
|
"node": ">=0.10.0"
|
|
12059
12165
|
}
|
|
12060
12166
|
},
|
|
12167
|
+
"node_modules/hookified": {
|
|
12168
|
+
"version": "1.7.0",
|
|
12169
|
+
"resolved": "https://registry.npmjs.org/hookified/-/hookified-1.7.0.tgz",
|
|
12170
|
+
"integrity": "sha512-XQdMjqC1AyeOzfs+17cnIk7Wdfu1hh2JtcyNfBf5u9jHrT3iZUlGHxLTntFBuk5lwkqJ6l3+daeQdHK5yByHVA==",
|
|
12171
|
+
"license": "MIT"
|
|
12172
|
+
},
|
|
12061
12173
|
"node_modules/hosted-git-info": {
|
|
12062
12174
|
"version": "4.1.0",
|
|
12063
12175
|
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz",
|
|
@@ -12691,14 +12803,14 @@
|
|
|
12691
12803
|
}
|
|
12692
12804
|
},
|
|
12693
12805
|
"node_modules/intl-messageformat": {
|
|
12694
|
-
"version": "10.7.
|
|
12695
|
-
"resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-10.7.
|
|
12696
|
-
"integrity": "sha512-
|
|
12806
|
+
"version": "10.7.14",
|
|
12807
|
+
"resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-10.7.14.tgz",
|
|
12808
|
+
"integrity": "sha512-mMGnE4E1otdEutV5vLUdCxRJygHB5ozUBxsPB5qhitewssrS/qGruq9bmvIRkkGsNeK5ZWLfYRld18UHGTIifQ==",
|
|
12697
12809
|
"license": "BSD-3-Clause",
|
|
12698
12810
|
"dependencies": {
|
|
12699
12811
|
"@formatjs/ecma402-abstract": "2.3.2",
|
|
12700
12812
|
"@formatjs/fast-memoize": "2.2.6",
|
|
12701
|
-
"@formatjs/icu-messageformat-parser": "2.
|
|
12813
|
+
"@formatjs/icu-messageformat-parser": "2.11.0",
|
|
12702
12814
|
"tslib": "2"
|
|
12703
12815
|
}
|
|
12704
12816
|
},
|
|
@@ -17886,13 +17998,13 @@
|
|
|
17886
17998
|
}
|
|
17887
17999
|
},
|
|
17888
18000
|
"node_modules/puppeteer-core": {
|
|
17889
|
-
"version": "23.
|
|
17890
|
-
"resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-23.
|
|
17891
|
-
"integrity": "sha512-
|
|
18001
|
+
"version": "23.11.1",
|
|
18002
|
+
"resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-23.11.1.tgz",
|
|
18003
|
+
"integrity": "sha512-3HZ2/7hdDKZvZQ7dhhITOUg4/wOrDRjyK2ZBllRB0ZCOi9u0cwq1ACHDjBB+nX+7+kltHjQvBRdeY7+W0T+7Gg==",
|
|
17892
18004
|
"license": "Apache-2.0",
|
|
17893
18005
|
"dependencies": {
|
|
17894
18006
|
"@puppeteer/browsers": "2.6.1",
|
|
17895
|
-
"chromium-bidi": "0.
|
|
18007
|
+
"chromium-bidi": "0.11.0",
|
|
17896
18008
|
"debug": "^4.4.0",
|
|
17897
18009
|
"devtools-protocol": "0.0.1367902",
|
|
17898
18010
|
"typed-query-selector": "^2.12.0",
|
|
@@ -19644,9 +19756,9 @@
|
|
|
19644
19756
|
}
|
|
19645
19757
|
},
|
|
19646
19758
|
"node_modules/spdx-license-ids": {
|
|
19647
|
-
"version": "3.0.
|
|
19648
|
-
"resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.
|
|
19649
|
-
"integrity": "sha512-
|
|
19759
|
+
"version": "3.0.21",
|
|
19760
|
+
"resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.21.tgz",
|
|
19761
|
+
"integrity": "sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==",
|
|
19650
19762
|
"license": "CC0-1.0"
|
|
19651
19763
|
},
|
|
19652
19764
|
"node_modules/spdy": {
|
|
@@ -20009,9 +20121,9 @@
|
|
|
20009
20121
|
}
|
|
20010
20122
|
},
|
|
20011
20123
|
"node_modules/stylelint": {
|
|
20012
|
-
"version": "16.
|
|
20013
|
-
"resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.
|
|
20014
|
-
"integrity": "sha512-
|
|
20124
|
+
"version": "16.13.2",
|
|
20125
|
+
"resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.13.2.tgz",
|
|
20126
|
+
"integrity": "sha512-wDlgh0mRO9RtSa3TdidqHd0nOG8MmUyVKl+dxA6C1j8aZRzpNeEgdhFmU5y4sZx4Fc6r46p0fI7p1vR5O2DZqA==",
|
|
20015
20127
|
"funding": [
|
|
20016
20128
|
{
|
|
20017
20129
|
"type": "opencollective",
|
|
@@ -20033,16 +20145,16 @@
|
|
|
20033
20145
|
"colord": "^2.9.3",
|
|
20034
20146
|
"cosmiconfig": "^9.0.0",
|
|
20035
20147
|
"css-functions-list": "^3.2.3",
|
|
20036
|
-
"css-tree": "^3.0
|
|
20148
|
+
"css-tree": "^3.1.0",
|
|
20037
20149
|
"debug": "^4.3.7",
|
|
20038
|
-
"fast-glob": "^3.3.
|
|
20150
|
+
"fast-glob": "^3.3.3",
|
|
20039
20151
|
"fastest-levenshtein": "^1.0.16",
|
|
20040
|
-
"file-entry-cache": "^
|
|
20152
|
+
"file-entry-cache": "^10.0.5",
|
|
20041
20153
|
"global-modules": "^2.0.0",
|
|
20042
20154
|
"globby": "^11.1.0",
|
|
20043
20155
|
"globjoin": "^0.1.4",
|
|
20044
20156
|
"html-tags": "^3.3.1",
|
|
20045
|
-
"ignore": "^
|
|
20157
|
+
"ignore": "^7.0.1",
|
|
20046
20158
|
"imurmurhash": "^0.1.4",
|
|
20047
20159
|
"is-plain-object": "^5.0.0",
|
|
20048
20160
|
"known-css-properties": "^0.35.0",
|
|
@@ -20116,15 +20228,15 @@
|
|
|
20116
20228
|
}
|
|
20117
20229
|
},
|
|
20118
20230
|
"node_modules/stylelint-scss": {
|
|
20119
|
-
"version": "6.10.
|
|
20120
|
-
"resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-6.10.
|
|
20121
|
-
"integrity": "sha512-
|
|
20231
|
+
"version": "6.10.1",
|
|
20232
|
+
"resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-6.10.1.tgz",
|
|
20233
|
+
"integrity": "sha512-CBqs0jecftIyhic6xba+4OvZUp4B0wNbX19w6Rq1fPo+lBDmTevk+olo8H7u/WQpTSDCDbBN4f3oocQurvXLTQ==",
|
|
20122
20234
|
"license": "MIT",
|
|
20123
20235
|
"dependencies": {
|
|
20124
20236
|
"css-tree": "^3.0.1",
|
|
20125
20237
|
"is-plain-object": "^5.0.0",
|
|
20126
20238
|
"known-css-properties": "^0.35.0",
|
|
20127
|
-
"mdn-data": "^2.
|
|
20239
|
+
"mdn-data": "^2.14.0",
|
|
20128
20240
|
"postcss-media-query-parser": "^0.2.3",
|
|
20129
20241
|
"postcss-resolve-nested-selector": "^0.1.6",
|
|
20130
20242
|
"postcss-selector-parser": "^7.0.0",
|
|
@@ -20137,6 +20249,12 @@
|
|
|
20137
20249
|
"stylelint": "^16.0.2"
|
|
20138
20250
|
}
|
|
20139
20251
|
},
|
|
20252
|
+
"node_modules/stylelint-scss/node_modules/mdn-data": {
|
|
20253
|
+
"version": "2.15.0",
|
|
20254
|
+
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.15.0.tgz",
|
|
20255
|
+
"integrity": "sha512-KIrS0lFPOqA4DgeO16vI5fkAsy8p++WBlbXtB5P1EQs8ubBgguAInNd1DnrCeTRfGchY0kgThgDOOIPyOLH2dQ==",
|
|
20256
|
+
"license": "CC0-1.0"
|
|
20257
|
+
},
|
|
20140
20258
|
"node_modules/stylelint-scss/node_modules/postcss-selector-parser": {
|
|
20141
20259
|
"version": "7.0.0",
|
|
20142
20260
|
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
|
|
@@ -20228,28 +20346,23 @@
|
|
|
20228
20346
|
}
|
|
20229
20347
|
},
|
|
20230
20348
|
"node_modules/stylelint/node_modules/file-entry-cache": {
|
|
20231
|
-
"version": "
|
|
20232
|
-
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-
|
|
20233
|
-
"integrity": "sha512
|
|
20349
|
+
"version": "10.0.5",
|
|
20350
|
+
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-10.0.5.tgz",
|
|
20351
|
+
"integrity": "sha512-umpQsJrBNsdMDgreSryMEXvJh66XeLtZUwA8Gj7rHGearGufUFv6rB/bcXRFsiGWw/VeSUgUofF4Rf2UKEOrTA==",
|
|
20234
20352
|
"license": "MIT",
|
|
20235
20353
|
"dependencies": {
|
|
20236
|
-
"flat-cache": "^
|
|
20237
|
-
},
|
|
20238
|
-
"engines": {
|
|
20239
|
-
"node": ">=18"
|
|
20354
|
+
"flat-cache": "^6.1.5"
|
|
20240
20355
|
}
|
|
20241
20356
|
},
|
|
20242
20357
|
"node_modules/stylelint/node_modules/flat-cache": {
|
|
20243
|
-
"version": "
|
|
20244
|
-
"resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-
|
|
20245
|
-
"integrity": "sha512-
|
|
20358
|
+
"version": "6.1.5",
|
|
20359
|
+
"resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-6.1.5.tgz",
|
|
20360
|
+
"integrity": "sha512-QR+2kN38f8nMfiIQ1LHYjuDEmZNZVjxuxY+HufbS3BW0EX01Q5OnH7iduOYRutmgiXb797HAKcXUeXrvRjjgSQ==",
|
|
20246
20361
|
"license": "MIT",
|
|
20247
20362
|
"dependencies": {
|
|
20248
|
-
"
|
|
20249
|
-
"
|
|
20250
|
-
|
|
20251
|
-
"engines": {
|
|
20252
|
-
"node": ">=18"
|
|
20363
|
+
"cacheable": "^1.8.7",
|
|
20364
|
+
"flatted": "^3.3.2",
|
|
20365
|
+
"hookified": "^1.6.0"
|
|
20253
20366
|
}
|
|
20254
20367
|
},
|
|
20255
20368
|
"node_modules/stylelint/node_modules/global-modules": {
|
|
@@ -20279,9 +20392,9 @@
|
|
|
20279
20392
|
}
|
|
20280
20393
|
},
|
|
20281
20394
|
"node_modules/stylelint/node_modules/ignore": {
|
|
20282
|
-
"version": "
|
|
20283
|
-
"resolved": "https://registry.npmjs.org/ignore/-/ignore-
|
|
20284
|
-
"integrity": "sha512-
|
|
20395
|
+
"version": "7.0.3",
|
|
20396
|
+
"resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.3.tgz",
|
|
20397
|
+
"integrity": "sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==",
|
|
20285
20398
|
"license": "MIT",
|
|
20286
20399
|
"engines": {
|
|
20287
20400
|
"node": ">= 4"
|
|
@@ -20824,10 +20937,13 @@
|
|
|
20824
20937
|
}
|
|
20825
20938
|
},
|
|
20826
20939
|
"node_modules/text-decoder": {
|
|
20827
|
-
"version": "1.2.
|
|
20828
|
-
"resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.
|
|
20829
|
-
"integrity": "sha512-
|
|
20830
|
-
"license": "Apache-2.0"
|
|
20940
|
+
"version": "1.2.3",
|
|
20941
|
+
"resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.3.tgz",
|
|
20942
|
+
"integrity": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==",
|
|
20943
|
+
"license": "Apache-2.0",
|
|
20944
|
+
"dependencies": {
|
|
20945
|
+
"b4a": "^1.6.4"
|
|
20946
|
+
}
|
|
20831
20947
|
},
|
|
20832
20948
|
"node_modules/text-table": {
|
|
20833
20949
|
"version": "0.2.0",
|
|
@@ -20854,18 +20970,18 @@
|
|
|
20854
20970
|
"license": "MIT"
|
|
20855
20971
|
},
|
|
20856
20972
|
"node_modules/tldts-core": {
|
|
20857
|
-
"version": "6.1.
|
|
20858
|
-
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.
|
|
20859
|
-
"integrity": "sha512-
|
|
20973
|
+
"version": "6.1.74",
|
|
20974
|
+
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.74.tgz",
|
|
20975
|
+
"integrity": "sha512-gTwtY6L2GfuxiL4CWpLknv9JDYYqBvKCk/BT5uAaAvCA0s6pzX7lr2IrkQZSUlnSjRHIjTl8ZwKCVXJ7XNRWYw==",
|
|
20860
20976
|
"license": "MIT"
|
|
20861
20977
|
},
|
|
20862
20978
|
"node_modules/tldts-icann": {
|
|
20863
|
-
"version": "6.1.
|
|
20864
|
-
"resolved": "https://registry.npmjs.org/tldts-icann/-/tldts-icann-6.1.
|
|
20865
|
-
"integrity": "sha512-
|
|
20979
|
+
"version": "6.1.74",
|
|
20980
|
+
"resolved": "https://registry.npmjs.org/tldts-icann/-/tldts-icann-6.1.74.tgz",
|
|
20981
|
+
"integrity": "sha512-v8pT30geByIeKzU8rbAGEhMx/mJQIJhkt1mE286IyEAvZNzqcyQIumW96syfHVio/L7Eq6y8Q5YVQRw0uVyqaQ==",
|
|
20866
20982
|
"license": "MIT",
|
|
20867
20983
|
"dependencies": {
|
|
20868
|
-
"tldts-core": "^6.1.
|
|
20984
|
+
"tldts-core": "^6.1.74"
|
|
20869
20985
|
}
|
|
20870
20986
|
},
|
|
20871
20987
|
"node_modules/tmp": {
|
|
@@ -21230,7 +21346,6 @@
|
|
|
21230
21346
|
"integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==",
|
|
21231
21347
|
"license": "BSD-2-Clause",
|
|
21232
21348
|
"optional": true,
|
|
21233
|
-
"peer": true,
|
|
21234
21349
|
"bin": {
|
|
21235
21350
|
"uglifyjs": "bin/uglifyjs"
|
|
21236
21351
|
},
|
|
@@ -21508,12 +21623,6 @@
|
|
|
21508
21623
|
"requires-port": "^1.0.0"
|
|
21509
21624
|
}
|
|
21510
21625
|
},
|
|
21511
|
-
"node_modules/urlpattern-polyfill": {
|
|
21512
|
-
"version": "10.0.0",
|
|
21513
|
-
"resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz",
|
|
21514
|
-
"integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==",
|
|
21515
|
-
"license": "MIT"
|
|
21516
|
-
},
|
|
21517
21626
|
"node_modules/util-deprecate": {
|
|
21518
21627
|
"version": "1.0.2",
|
|
21519
21628
|
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
|
@@ -22244,8 +22353,7 @@
|
|
|
22244
22353
|
"version": "1.0.0",
|
|
22245
22354
|
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
|
|
22246
22355
|
"integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==",
|
|
22247
|
-
"license": "MIT"
|
|
22248
|
-
"peer": true
|
|
22356
|
+
"license": "MIT"
|
|
22249
22357
|
},
|
|
22250
22358
|
"node_modules/wrap-ansi": {
|
|
22251
22359
|
"version": "7.0.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caweb/html-webpack-plugin",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.22",
|
|
4
4
|
"description": "CAWebPublishing Sample Page and Configurations",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -25,11 +25,6 @@
|
|
|
25
25
|
"build": "npm run build:prod && npm run build:dev",
|
|
26
26
|
"build:prod": "webpack build --config ./webpack.config.js ./scripts/create-entrypoints.js --merge --mode production",
|
|
27
27
|
"build:dev": "webpack build --config ./webpack.config.js ./scripts/create-entrypoints.js --merge --mode development",
|
|
28
|
-
"build:danny": "npm run build:danny:prod && npm run build:danny:dev",
|
|
29
|
-
"build:danny:prod": "webpack build --config ./webpack.config.js ./entry/danny.js --merge --mode production",
|
|
30
|
-
"build:danny:dev": "webpack build --config ./webpack.config.js ./entry/danny.js --merge --mode development",
|
|
31
|
-
"serve:danny": "set NODE_OPTIONS='--scheme false' && webpack serve --config ./webpack.config.js ./entry/danny.js ./scripts/webpack.test.js --merge",
|
|
32
|
-
"serve:danny:quick": "set NODE_OPTIONS='--no-jshint --no-audit --no-a11y --scheme false' && webpack serve --config ./webpack.config.js ./entry/danny.js ./scripts/webpack.test.js --merge",
|
|
33
28
|
"build:delta": "npm run build:delta:prod && npm run build:delta:dev",
|
|
34
29
|
"build:delta:prod": "webpack build --config ./webpack.config.js ./entry/delta.js --merge --mode production",
|
|
35
30
|
"build:delta:dev": "webpack build --config ./webpack.config.js ./entry/delta.js --merge --mode development",
|
|
@@ -123,8 +118,8 @@
|
|
|
123
118
|
"dependencies": {
|
|
124
119
|
"@caweb/a11y-webpack-plugin": "^1.0.9",
|
|
125
120
|
"@caweb/css-audit-webpack-plugin": "^1.0.12",
|
|
126
|
-
"@caweb/jshint-webpack-plugin": "^
|
|
127
|
-
"@wordpress/scripts": "^30.
|
|
121
|
+
"@caweb/jshint-webpack-plugin": "^2.0.1",
|
|
122
|
+
"@wordpress/scripts": "^30.9.0",
|
|
128
123
|
"css-minimizer-webpack-plugin": "^7.0.0",
|
|
129
124
|
"handlebars-loader": "^1.7.3",
|
|
130
125
|
"html-webpack-link-type-plugin": "^1.1.1",
|
|
@@ -134,4 +129,4 @@
|
|
|
134
129
|
"webpack": "^5.97.1",
|
|
135
130
|
"webpack-cli": "^6.0.1"
|
|
136
131
|
}
|
|
137
|
-
}
|
|
132
|
+
}
|