package.json 467 B

12345678910111213141516171819
  1. {
  2. "name": "client-only",
  3. "description": "This is a marker package to indicate that a module can only be used in Client Components.",
  4. "keywords": [
  5. "react"
  6. ],
  7. "version": "0.0.1",
  8. "homepage": "https://reactjs.org/",
  9. "bugs": "https://github.com/facebook/react/issues",
  10. "license": "MIT",
  11. "files": ["index.js", "error.js"],
  12. "main": "index.js",
  13. "exports": {
  14. ".": {
  15. "react-server": "./error.js",
  16. "default": "./index.js"
  17. }
  18. }
  19. }