-
Notifications
You must be signed in to change notification settings - Fork 2k
/
package.json
423 lines (423 loc) · 18.9 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
{
"name": "wp-calypso",
"author": "Automattic Inc.",
"version": "18.13.0",
"description": "A pure REST-API and JS based version of the WordPress.com admin.",
"private": true,
"workspaces": {
"packages": [
"client",
"desktop",
"apps/*",
"packages/*",
"test/e2e"
]
},
"bugs": "https://github.com/Automattic/wp-calypso/issues",
"homepage": "https://github.com/Automattic/wp-calypso",
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/Automattic/wp-calypso.git",
"directory": "/"
},
"browserslist": {
"wpcom": [
"extends @wordpress/browserslist-config"
],
"defaults": [
"extends @wordpress/browserslist-config"
],
"evergreen": [
"last 2 Chrome versions",
"last 1 ChromeAndroid versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 3 iOS versions",
"last 2 Edge versions",
"last 2 Opera versions",
"Firefox ESR",
"Electron >= 11",
"unreleased Chrome versions",
"unreleased ChromeAndroid versions",
"unreleased Firefox versions",
"unreleased FirefoxAndroid versions",
"unreleased Edge versions",
"unreleased Opera versions"
],
"server": [
"current node"
],
"test": [
"current node"
]
},
"engines": {
"node": "^v22.9.0",
"yarn": "^4.0.0"
},
"scripts": {
"analyze-bundles": "yarn run build-client-stats && webpack-bundle-analyzer client/stats.json public/evergreen -h 127.0.0.1 -p 9898 -s gzip",
"analyze-bundles:server": "yarn run build-server-stats && webpack-bundle-analyzer client/stats-server.json build -h 127.0.0.1 -p 9898 -s parsed",
"analyze-icfy": "yarn run build-client-stats && node --max-old-space-size=4096 bin/icfy-analyze.js",
"build": "./bin/build-packages-if-needed.sh && yarn run build-static && yarn run build-css && run-p -s 'build-devdocs:*' && run-p -s build-server build-client-if-prod",
"build-client": "BROWSERSLIST_ENV=evergreen yarn webpack --config client/webpack.config.js --stats-preset errors-only",
"build-client-if-prod": "node -e \"process.env.CALYPSO_ENV === 'production' && process.exit(1)\" || { yarn run build-client && yarn run build-languages-if-enabled }",
"build-client-stats": "NODE_ENV=production CALYPSO_ENV=production EMIT_STATS=true yarn run build-client",
"build-css": "run-p -s 'build-css:*'",
"build-css:directly": "node bin/render-stylesheet.js --in client/assets/stylesheets/directly.scss --out public/directly.css && yarn run postcss public/directly.css",
"build-css:reader-mobile": "node bin/render-stylesheet.js --in client/assets/stylesheets/reader-mobile.scss --out public/reader-mobile.css && yarn run postcss public/reader-mobile.css",
"build-desktop": "cd desktop && yarn run build",
"build-desktop:app": "cd desktop && yarn run build",
"build-desktop:config": "cd desktop && yarn run build:config",
"build-desktop:secrets": "cd desktop && yarn run build:secrets",
"build-devdocs:search-index": "node bin/generate-devdocs-search-index.js",
"build-devdocs:selectors-index": "node bin/generate-devdocs-selectors-index.js",
"build-docker": "node bin/build-docker.js",
"build-languages": "yarn run translate && node bin/build-languages.js",
"build-languages-if-enabled": "node -e \"(process.env.BUILD_TRANSLATION_CHUNKS === 'true' || process.env.ENABLE_FEATURES === 'use-translation-chunks') && process.exit(1)\" || yarn run build-languages",
"build-packages": "{ [ \"${SKIP_TSC:-}\" = \"true\" ] || tsc --build packages/tsconfig.json; } && yarn workspaces foreach --all --parallel --verbose run prepare",
"build-server": "mkdirp build && BROWSERSLIST_ENV=server webpack --config client/webpack.config.node.js --stats-preset errors-only && yarn run build-server:copy-modules",
"build-server-stats": "NODE_ENV=production CALYPSO_ENV=production EMIT_STATS=true yarn run build-server",
"build-server:copy-modules": "node -e \"process.env.CALYPSO_ENV === 'production' && process.exit(1)\" || node bin/copy-production-modules.js",
"build-static": "npx ncp static public && npx ncp client/lib/service-worker public --filter='service-worker(/service-worker\\.js)?$'",
"calypso-doctor": "./node_modules/.bin/calypso-doctor",
"clean": "yarn run clean:packages && yarn run clean:build && yarn run clean:public && yarn run clean:translations",
"clean:build": "rm -rf build client/server/bundler/*.json client/server/devdocs/search-index.js || true",
"clean:packages": "yarn workspaces foreach --all --parallel --verbose --exclude 'wp-calypso' run clean",
"clean:public": "rm -rf public",
"clean:translations": "rm -rf build/strings calypso-strings.pot chunks-map.*.json || true",
"components:storybook:start": "echo 'Storybook in Calypso moved into the root directory. Run `yarn storybook:start` instead.'",
"composite-checkout:storybook:start": "echo 'Deprecated, run `yarn workspace @automattic/composite-checkout run storybook` instead'",
"distclean": "yarn run clean && rm -rf **/node_modules **/.cache .yarn/install-state.gz || true",
"docker": "docker run -it --name wp-calypso --rm -p 80:3000 wp-calypso",
"docker-jetpack-cloud": "docker run -it --env CALYPSO_ENV=jetpack-cloud-production --name wp-calypso --rm -p 80:3000 wp-calypso",
"docker-a8c-for-agencies": "docker run -it --env CALYPSO_ENV=a8c-for-agencies-production --name wp-calypso --rm -p 80:3000 wp-calypso",
"eslint-branch": "node bin/eslint-branch.js",
"feature-search": "node bin/feature-search.js",
"generate": "generate-calypso-package",
"install-if-no-packages": "node bin/install-if-no-packages.js",
"lint": "run-s -s 'lint:*'",
"lint:config-defaults": "node bin/validate-config-keys.js",
"lint:css": "stylelint \"**/*.{css,scss}\"",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx,.mjs,.json --cache .",
"lint:mixedindent": "mixedindentlint --ignore-comments \"client/**/*.scss\" \"assets/**/*.scss\" \"**/*.js\" \"**/*.jsx\" \"**/*.tsx\" \"**/*.tsx\" \"!build/**\" \"!node_modules/**\" \"!public/**\" \"!client/config/index.js\"",
"postcss": "postcss -r --config packages/calypso-build/postcss.config.js",
"postinstall": "yarn run build-packages && husky install",
"reformat-files": "./node_modules/.bin/prettier --ignore-path .eslintignore --write \"**/*.{js,jsx,json,ts,tsx}\"",
"search:storybook:start": "echo 'Deprecated, run `yarn workspace @automattic/search run storybook` instead'",
"start": "npx check-node-version --package && node bin/welcome.js && yarn run build && yarn run start-build",
"start-mock-wordpress-com": "MOCK_WORDPRESSDOTCOM=1 yarn run start",
"start-build": "BROWSERSLIST_ENV=evergreen node build/server.js | bunyan -o short",
"start-jetpack-cloud": "CALYPSO_ENV=jetpack-cloud-development yarn run start",
"start-jetpack-cloud-p": "PORT=3001 CALYPSO_ENV=jetpack-cloud-development yarn run build-server && PORT=3001 CALYPSO_ENV=jetpack-cloud-development yarn run start-build",
"start-a8c-for-agencies": "CALYPSO_ENV=a8c-for-agencies-development yarn run start",
"start-a8c-for-agencies-p": "PORT=3002 CALYPSO_ENV=a8c-for-agencies-development yarn run build-server && PORT=3002 CALYPSO_ENV=a8c-for-agencies-development yarn run start-build",
"storybook:start": "sb dev -c ./.storybook -p 6006",
"storybook:build": "sb build -c ./.storybook",
"test": "run-s -s test-client test-packages test-server test-build-tools",
"test-build-tools": "jest -c=test/build-tools/jest.config.js",
"test-client": "TZ=UTC jest -c=test/client/jest.config.js",
"test-client:watch": "yarn run test-client --watch",
"test-desktop:e2e": "echo 'Deprecated, run `cd desktop && yarn run test:e2e` instead'",
"test-integration": "jest -c=test/integration/jest.config.js",
"test-integration:watch": "yarn run test-integration --watch",
"test-apps": "jest -c=test/apps/jest.config.js",
"test-apps:watch": "yarn run test-apps --watch",
"test-packages": "jest -c=test/packages/jest.config.js",
"test-packages:watch": "yarn run test-packages --watch",
"test-server": "jest -c=test/server/jest.config.js",
"test-server:coverage": "yarn run test-server --coverage",
"test-server:watch": "yarn run test-server --watch",
"translate": "rm -rf build/strings && mkdirp public && yarn translate:dependencies && yarn translate:calypso",
"translate:dependencies": "rm -rf build/dependency-strings && mkdirp build/strings && wp-babel-makepot './node_modules/@wordpress/**/build-module/**/*.js' --ignore '**/*.native.js' --base './' --dir './build/dependency-strings' --output './build/strings/calypso-dependencies.pot'",
"translate:calypso": "wp-babel-makepot './{client,packages,apps}/**/*.{js,jsx,ts,tsx}' --ignore '**/node_modules/**,**/test/**,**/*.d.ts' --base './' --dir './build/strings' --output './public/calypso-strings.pot'",
"tsc": "NODE_OPTIONS='--max-old-space-size=4096' tsc",
"typecheck": "yarn run tsc --project client",
"update-deps": "rm -rf yarn.lock && yarn run distclean && yarn install && replace --silent 'http://' 'https://' . --recursive --include='yarn.lock' && touch -m node_modules",
"vscode:link": "node bin/set-up-vs-code.js",
"vscode:unlink": "node bin/set-up-vs-code.js --unlink",
"whybundled": "NODE_ENV=production CALYPSO_ENV=production EMIT_STATS=withreasons CONCATENATE_MODULES=false yarn run build-client && whybundled client/stats.json",
"whybundled:server": "NODE_ENV=production CALYPSO_ENV=production EMIT_STATS=withreasons CONCATENATE_MODULES=false yarn run build-server && whybundled client/stats-server.json"
},
"dependencies": {
"@automattic/calypso-babel-config": "workspace:^",
"@automattic/calypso-build": "workspace:^",
"@automattic/calypso-color-schemes": "workspace:^",
"@automattic/calypso-doctor": "workspace:^",
"@automattic/calypso-products": "workspace:^",
"@automattic/calypso-razorpay": "workspace:^",
"@automattic/calypso-router": "workspace:^",
"@automattic/color-studio": "^3.0.1",
"@automattic/command-palette": "workspace:^",
"@automattic/components": "workspace:^",
"@automattic/data-stores": "workspace:^",
"@automattic/design-carousel": "workspace:^",
"@automattic/help-center": "workspace:^",
"@automattic/i18n-utils": "workspace:^",
"@automattic/languages": "workspace:^",
"@automattic/launchpad": "workspace:^",
"@automattic/plans-grid-next": "workspace:^",
"@automattic/privacy-toolset": "workspace:^",
"@automattic/typography": "workspace:^",
"@automattic/urls": "workspace:^",
"@automattic/verbum-block-editor": "workspace:^",
"@automattic/viewport": "workspace:^",
"@automattic/whats-new": "workspace:^",
"@automattic/wp-babel-makepot": "workspace:^",
"@automattic/wpcom-template-parts": "workspace:^",
"@automattic/zendesk-client": "workspace:^",
"@types/cookie": "^0.4.1",
"@types/debug": "^4.1.7",
"@types/fast-json-stable-stringify": "^2.0.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.199",
"@types/node": "^22.7.5",
"@types/page": "^1.11.5",
"@types/qs": "^6.9.7",
"@types/react": "^18.2.6",
"@types/react-modal": "^3.13.1",
"@types/react-router-dom": "^5.3.3",
"@types/react-transition-group": "^4.4.4",
"@types/store": "^2.0.2",
"@types/uuid": "^9.0.7",
"@types/validator": "^13.7.1",
"@types/webpack-env": "^1.18.5",
"@types/wordpress__block-editor": "^11.5.8",
"@wordpress/base-styles": "^5.8.0",
"@wordpress/block-editor": "^14.3.0",
"@wordpress/block-library": "^9.8.2",
"@wordpress/blocks": "^13.8.0",
"@wordpress/commands": "^1.8.0",
"@wordpress/components": "^28.8.0",
"@wordpress/data": "^10.8.0",
"@wordpress/element": "^6.8.0",
"@wordpress/format-library": "^5.8.0",
"@wordpress/i18n": "^5.8.0",
"@wordpress/icons": "^10.8.0",
"@wordpress/is-shallow-equal": "^5.8.0",
"@wordpress/keycodes": "^4.8.0",
"@wordpress/primitives": "^4.8.0",
"@wordpress/rich-text": "^7.8.0",
"@wordpress/url": "^4.8.0",
"animate.css": "^4.1.1",
"browserslist": "^4.16.0",
"calypso": "workspace:^",
"calypso-codemods": "workspace:^",
"cmdk": "^0.2.0",
"config": "^3.3.6",
"d3-time-format": "^4.1.0",
"debug": "^4.3.3",
"enhanced-resolve": "5.9.3",
"http-proxy-middleware": "^3.0.0",
"i18n-calypso": "workspace:^",
"i18n-calypso-cli": "workspace:^",
"jsdom": "^20.0.1",
"lodash": "^4.17.21",
"lottie-web": "^5.9.6",
"moment": "^2.26.0",
"photon": "workspace:^",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.2",
"react-intersection-observer": "^9.4.3",
"react-modal": "^3.16.1",
"redux": "^4.2.1",
"request": "^2.88.2",
"swiper": "^10.1.0",
"workspace": "^0.0.1-preview.1",
"wpcom": "workspace:^"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
},
"devDependencies": {
"@automattic/calypso-eslint-overrides": "workspace:^",
"@automattic/calypso-jest": "workspace:^",
"@automattic/calypso-package-generator": "workspace:^",
"@automattic/calypso-storybook": "workspace:^",
"@automattic/eslint-plugin-json": "workspace:^",
"@babel/core": "^7.25.8",
"@babel/eslint-parser": "^7.25.8",
"@babel/register": "^7.25.7",
"@babel/runtime": "^7.25.7",
"@bartekbp/typescript-checkstyle": "^5.0.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@signal-noise/stylelint-scales": "^2.0.3",
"@storybook/cli": "^7.6.19",
"@storybook/react": "^7.6.19",
"@tanstack/eslint-plugin-query": "^5.14.6",
"@testing-library/jest-dom": "^6.4.5",
"@types/chroma-js": "^2.4.4",
"@types/dompurify": "^3.0.5",
"@types/eslint": "^9.6.1",
"@types/gtag.js": "^0.0.19",
"@types/superagent": "^4.1.24",
"@types/wordpress__blocks": "^12.5.14",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@wordpress/eslint-plugin": "^21.1.2",
"@wordpress/stylelint-config": "^23.0.0",
"babel-loader": "^8.2.3",
"bunyan": "^1.8.15",
"chalk": "^4.1.2",
"check-node-version": "^4.0.2",
"chroma-js": "^2.6.0",
"css-loader": "^6.11.0",
"doctrine": "^3.0.0",
"dotenv-webpack": "^8.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-nibble": "^8.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-inclusive-language": "^2.2.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsdoc": "^46.10.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-md": "^1.0.19",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-wpcalypso": "workspace:^",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.14.0",
"gettext-parser": "^4.0.3",
"glob": "^7.1.6",
"globby": "^10.0.2",
"gzip-size": "^6.0.0",
"husky": "^7.0.4",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jest-teamcity": "^1.11.0",
"loader-utils": "^1.4.2",
"lunr": "^2.3.9",
"mixedindentlint": "^1.2.0",
"mkdirp": "^1.0.4",
"ncp": "^2.0.0",
"nock": "^13.5.4",
"node-fetch": "^2.6.6",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"postcss-cli": "^9.0.1",
"postcss-custom-properties": "^11.0.0",
"prettier": "npm:wp-prettier@3.0.3",
"react-refresh": "^0.14.0",
"readline-sync": "^1.4.10",
"recursive-copy": "^2.0.14",
"replace": "^1.1.5",
"sass": "^1.37.5",
"sass-loader": "^12.1.0",
"source-map": "^0.7.3",
"stackframe": "^1.1.1",
"stacktrace-gps": "^3.0.3",
"stylelint": "^16.8.2",
"tslib": "^2.3.0",
"typescript": "^5.3.3",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^4.10.0",
"webpack-dev-middleware": "^5.3.4",
"whybundled": "^2.0.0",
"yargs": "^17.0.1"
},
"resolutions": {
"@types/react": "^18.2",
"@types/wordpress__block-editor": "npm:noop-package@1.0.0",
"@types/wordpress__editor": "npm:noop-package@1.0.0",
"keytar@npm:7.7.0/node-addon-api": "3.1.0",
"lzma-native": "^8.0.6",
"node-abi": "3.35.0",
"@wordpress/a11y": "4.8.0",
"@wordpress/annotations": "3.8.0",
"@wordpress/api-fetch": "7.8.0",
"@wordpress/autop": "4.8.0",
"@wordpress/babel-plugin-import-jsx-pragma": "5.8.0",
"@wordpress/babel-plugin-makepot": "6.8.0",
"@wordpress/babel-preset-default": "8.8.2",
"@wordpress/base-styles": "^5.8.0",
"@wordpress/blob": "4.8.0",
"@wordpress/block-directory": "5.8.3",
"@wordpress/block-editor": "^14.3.0",
"@wordpress/block-library": "^9.8.2",
"@wordpress/block-serialization-default-parser": "5.8.0",
"@wordpress/block-serialization-spec-parser": "5.8.0",
"@wordpress/blocks": "^13.8.0",
"@wordpress/browserslist-config": "6.8.0",
"@wordpress/components": "^28.8.0",
"@wordpress/compose": "7.8.0",
"@wordpress/core-data": "7.8.0",
"@wordpress/create-block-tutorial-template": "4.8.0",
"@wordpress/create-block": "4.51.0",
"@wordpress/custom-templated-path-webpack-plugin": "2.13.0",
"@wordpress/customize-widgets": "5.8.2",
"@wordpress/data-controls": "4.8.0",
"@wordpress/data": "^10.8.0",
"@wordpress/dataviews": "4.4.0",
"@wordpress/date": "5.8.0",
"@wordpress/dependency-extraction-webpack-plugin": "6.11.0",
"@wordpress/deprecated": "4.8.0",
"@wordpress/docgen": "2.8.0",
"@wordpress/dom-ready": "4.8.0",
"@wordpress/dom": "4.8.0",
"@wordpress/e2e-test-utils": "11.8.0",
"@wordpress/e2e-tests": "8.8.2",
"@wordpress/edit-post": "8.8.3",
"@wordpress/edit-site": "6.8.3",
"@wordpress/edit-widgets": "6.8.2",
"@wordpress/editor": "14.8.3",
"@wordpress/element": "^6.8.0",
"@wordpress/escape-html": "3.8.0",
"@wordpress/eslint-plugin": "^21.1.2",
"@wordpress/experiments": "0.8.0",
"@wordpress/format-library": "^5.8.0",
"@wordpress/hooks": "4.8.0",
"@wordpress/html-entities": "4.8.0",
"@wordpress/i18n": "^5.8.0",
"@wordpress/icons": "^10.8.0",
"@wordpress/interface": "6.8.0",
"@wordpress/is-shallow-equal": "^5.8.0",
"@wordpress/jest-console": "8.8.0",
"@wordpress/jest-preset-default": "12.8.0",
"@wordpress/jest-puppeteer-axe": "7.8.0",
"@wordpress/keyboard-shortcuts": "5.8.0",
"@wordpress/keycodes": "^4.8.0",
"@wordpress/lazy-import": "2.8.0",
"@wordpress/library-export-default-webpack-plugin": "2.14.0",
"@wordpress/list-reusable-blocks": "5.8.0",
"@wordpress/media-utils": "5.8.0",
"@wordpress/notices": "5.8.0",
"@wordpress/npm-package-json-lint-config": "5.8.0",
"@wordpress/nux": "9.8.0",
"@wordpress/plugins": "7.8.0",
"@wordpress/postcss-plugins-preset": "5.8.0",
"@wordpress/postcss-themes": "6.8.0",
"@wordpress/preferences-persistence": "2.8.0",
"@wordpress/preferences": "4.8.0",
"@wordpress/prettier-config": "4.8.0",
"@wordpress/primitives": "^4.8.0",
"@wordpress/priority-queue": "3.8.0",
"@wordpress/private-apis": "^1.8.0",
"@wordpress/project-management-automation": "2.8.0",
"@wordpress/react-i18n": "4.8.0",
"@wordpress/readable-js-assets-webpack-plugin": "3.11.0",
"@wordpress/redux-routine": "5.8.0",
"@wordpress/reusable-blocks": "5.8.0",
"@wordpress/rich-text": "^7.8.0",
"@wordpress/server-side-render": "5.8.0",
"@wordpress/shortcode": "4.8.0",
"@wordpress/style-engine": "2.8.0",
"@wordpress/stylelint-config": "^23.0.0",
"@wordpress/token-list": "3.8.0",
"@wordpress/url": "^4.8.0",
"@wordpress/viewport": "6.8.0",
"@wordpress/warning": "3.8.0",
"@wordpress/widgets": "4.8.0",
"@wordpress/wordcount": "4.8.0"
},
"packageManager": "yarn@4.0.2",
"dependenciesMeta": {
"@react-spring/core@9.3.0": {
"built": false
}
}
}