Files
react/packages/react-noop-renderer/package.json
Sebastian Markbåge 0dedfcc681 Update the exports field (#23257)
* Add .browser and .node explicit entry points

This can be useful when the automatic selection doesn't work properly.

* Remove react/index

I'm not sure why I added this in the first place. Perhaps due to how our
builds work somehow.

* Remove build-info.json from files field
2022-02-08 21:07:26 -05:00

34 lines
724 B
JSON

{
"name": "react-noop-renderer",
"version": "16.0.0",
"private": true,
"description": "React package for testing the Fiber, Fizz and Flight reconcilers.",
"main": "index.js",
"repository": {
"type" : "git",
"url" : "https://github.com/facebook/react.git",
"directory": "packages/react-noop-renderer"
},
"license": "MIT",
"dependencies": {
"object-assign": "^4.1.1",
"react-reconciler": "*",
"react-client": "*",
"react-server": "*"
},
"peerDependencies": {
"react": "^17.0.0"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"persistent.js",
"server.js",
"flight-client.js",
"flight-modules.js",
"flight-server.js",
"cjs/"
]
}