mirror of
https://github.com/facebook/react.git
synced 2026-02-24 04:33:04 +00:00
There's no real reason to restrict the React peer dep to non-experimental, so relax it. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/31915). * #31919 * #31918 * #31917 * #31916 * __->__ #31915 * #31920
24 lines
567 B
JSON
24 lines
567 B
JSON
{
|
|
"name": "react-compiler-runtime",
|
|
"version": "0.0.1",
|
|
"description": "Runtime for React Compiler",
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"peerDependencies": {
|
|
"react": "^17.0.0 || ^18.0.0 || ^19.0.0 || ^0.0.0-experimental"
|
|
},
|
|
"scripts": {
|
|
"build": "rimraf dist && rollup --config --bundleConfigAsCjs",
|
|
"test": "echo 'no tests'"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/facebook/react.git",
|
|
"directory": "compiler/packages/react-compiler-runtime"
|
|
}
|
|
}
|