mirror of
https://github.com/facebook/react.git
synced 2026-02-26 17:05:07 +00:00
* Rename to clarify that it's client-only * Rename FizzStreamer to FizzServer for consistency * Rename react-flight to react-client/flight For consistency with react-server. Currently this just includes flight but it could be expanded to include the whole reconciler. * Add Relay Flight Build * Rename ReactServerHostConfig to ReactServerStreamConfig This will be the config specifically for streaming purposes. There will be other configs for other purposes.
35 lines
760 B
JSON
35 lines
760 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",
|
|
"regenerator-runtime": "^0.11.0",
|
|
"react-reconciler": "*",
|
|
"react-client": "*",
|
|
"react-server": "*"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.0.0"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"build-info.json",
|
|
"index.js",
|
|
"persistent.js",
|
|
"server.js",
|
|
"flight-client.js",
|
|
"flight-server.js",
|
|
"cjs/"
|
|
]
|
|
}
|