Why the package on npmjs doesn't have dependencies in package.json?
See original GitHub issueThe published package doesn’t have dependencies
list https://unpkg.com/browse/ka-table@6.9.0/package.json even if it has them https://github.com/komarovalexander/ka-table/blob/master/package.json#L7. Is there any reason for that? For now https://bundlephobia.com/package/ka-table@6.9.0 warns about that and most likely the bundle size might be different (or at least self-size)
Issue Analytics
- State:
- Created 2 years ago
- Comments:12 (7 by maintainers)
Top Results From Across the Web
NPM doesn't install module dependencies - Stack Overflow
I had an issue where manually installing a package had created a package-lock.json file after updating to node 8.0.0 and npm 5.0.0. After...
Read more >npm install not installing dependencies listed in package.json ...
I am running npm install expecting it to install all the dependencies in my package.json file, and it is not. Despite having lodash...
Read more >Adding dependencies to a package.json file - npm Docs
To add dependencies and devDependencies to a package.json file from the command line, you can install them in the root directory of your...
Read more >Installing Dependencies with npm - LearnHowToProgram.com
The purpose of package-lock.json is to list the exact versions of all dependencies in our project. While we'll manage the packages we need...
Read more >npm install | how it works - StackChief
The package.json file dictates what modules will get installed in the node_modules folder. It's important that npm install is run in the same...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
peerDependencies
has been added https://bundlephobia.com/package/ka-table@6.11.5ka-table
is compatible with react v16.8.0 and laterjs: https://stackblitz.com/edit/table-overview-js-j6kf6d?file=Demo.js ts: https://stackblitz.com/edit/table-overview-ts-pxnxfg?file=Demo.tsx
I will add this info to peerDependencies in one of the next releases, probably in July. Thanks to everyone for highlighting that