docsearch
docsearch copied to clipboard
Issue with peer dependencies of `@docsearch/react`
Ref.: https://github.com/vuejs/vitepress/issues/472#issuecomment-1013835336
@docsearch/js is using @docsearch/react with preact, but @docsearch/react wants react, react-dom, @types/react as its peer dependencies, which is throwing warnings. peerDependenciesMeta can be used to mark react (peer)dependencies in @docsearch/react as optional. (It is supported by latest versions of npm, yarn, pnpm.)
Also, I am not sure why @algolia/autocomplete-preset-algolia is listed as dependency of @docsearch/react.
@algolia/autocomplete-preset-algolia wants @algolia/client-search as a peer dependency, but @docsearch/react doesn't provide it, this is also giving a warning.
I also encountered this problem