I have a sample package.json for my application,
dependencies : {
P1 : “^1.0.0” // has a peer dependency of p3 v1
P2 : “^1.0.0” // has a peer dependency of p3 v2
}
P1 and P2 has peer dependency on P3, but on deferent versions. (e.g P1 has peer dependency of P3 V1 and P2 has peer dependency of P3 V2 )
(I don’t have access to p1 p2 source code. )
Is there any way to resolve such scenarios is my application’s package.json for not showing warning messages?