When using jupyterlab-search-replace in combination with JupyterLab v4.3.4 an error is reported.
jupyter labextension list --verbose discloses:
"[email protected]" is not compatible with the current JupyterLab
Conflicting Dependencies:
JupyterLab Extension Package
>=0.16.6 <0.17.0 >=0.13.2 <0.14.0 @jupyter/react-components
>=0.16.6 <0.17.0 >=0.13.2 <0.14.0 @jupyter/web-components
is there any reason not to replace in the lines 70-71 in package.json as below?
- "@jupyter/react-components": "^0.13.2"
- "@jupyter/web-components": "^0.13.2",
+ "@jupyter/react-components": "^0.16.6",
+ "@jupyter/web-components": "^0.16.6",