I've node.js and pnpm installed, with
pnpm config set auto-install-peers true
If I type :
pnpx create-next-app //(named my-app)
cd my-app
pnpm add @rainbow-me/rainbowkit
What is the right way to fix this ? If best practice needs to remove my auto-install-peers setting I'm ok with this.
my package.json for information, after typing theses commands :
{
"name": "mwe",
"version": "0.1.0",
"private": true,
"scripts": {
(...)
},
"dependencies": {
"@rainbow-me/rainbowkit": "^0.7.3",
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"eslint": "8.26.0",
"eslint-config-next": "12.3.1"
}
}