Use @getpara/react-sdk-lite for a lighter bundle when you only need specific chain support
Para offers a lightweight version of @getpara/react-sdk called @getpara/react-sdk-lite. It reduces your bundle size by letting you install only the chain-specific dependencies you actually need, rather than pulling in packages for all supported networks.
After installing, add the setup-para postinstall script to your package.json. This CLI tool ships with @getpara/react-sdk-lite and stubs out chain dependencies you didn’t install so your bundler won’t try to include them.
package.json
{ "scripts": { "postinstall": "setup-para" }}
If you already have a postinstall script, append && setup-para to it.
If you are migrating from @getpara/react-sdk, remove any dependencies for networks you no longer need (e.g., wagmi and viem if you only use Solana, or @solana/web3.js if you only use EVM).