package.json 591 B

123456789101112131415161718192021222324
  1. {
  2. "name": "use-sync-external-store",
  3. "description": "Backwards compatible shim for React's useSyncExternalStore. Works with any React that supports hooks.",
  4. "version": "1.2.0",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/facebook/react.git",
  8. "directory": "packages/use-sync-external-store"
  9. },
  10. "files": [
  11. "LICENSE",
  12. "README.md",
  13. "index.js",
  14. "index.native.js",
  15. "with-selector.js",
  16. "with-selector.native.js",
  17. "shim/",
  18. "cjs/"
  19. ],
  20. "license": "MIT",
  21. "peerDependencies": {
  22. "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
  23. }
  24. }