Currently I'm developing component-library for my react-project, I've setup a separate project for displaying the components and maintaining the components, here I use some set of dependencies like(lodash, tailwindcss) which I've not used in components, But while publishing the library to git registry, it takes the entire project's package.json file which contains the dependencies I used for design library (app), which I no don't need for functioning of library components, how can remove the dependencies for npm's package.json or add separate package.json, so that it won't install unwanted packages where I use it..?