Open
Description
Describe the bug
I'm getting pnpm warnings about missing peers.
I realize that it is not an error, and the app actually still works, but regardless, I think from the perspective of correctness, the tailwindcss-animate
requires tailwindcss
package, and it is not provided in the package. It's becomes a transient (accidental) dependency resolution, probably somewhere upstream.
To Reproduce
Examine tailwindcss-animate
peer declaration:
Examine the dependency declarations of inspector client:
Lines 25 to 50 in a7336cd
There's no tailwindcss
.
Expected behavior
Add tailwindcss
as a dependency.
Logs
WARN Issues with peer dependencies found
.
└─┬ @modelcontextprotocol/inspector 0.14.2
└─┬ @modelcontextprotocol/inspector-client 0.14.2
└─┬ tailwindcss-animate 1.0.7
└── ✕ missing peer tailwindcss@">=3.0.0 || insiders"
Peer dependencies that should be installed:
tailwindcss@">=3.0.0 || insiders"
Additional context
N/A