mirror of
https://github.com/facebook/react.git
synced 2026-02-23 20:23:02 +00:00
This was accidentally removed in the esbuild transition. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/31994). * #31995 * __->__ #31994
26 lines
621 B
JSON
26 lines
621 B
JSON
{
|
|
"name": "react-compiler-runtime",
|
|
"version": "0.0.1",
|
|
"description": "Runtime for React Compiler",
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"peerDependencies": {
|
|
"react": "^17.0.0 || ^18.0.0 || ^19.0.0 || ^0.0.0-experimental"
|
|
},
|
|
"scripts": {
|
|
"build": "rimraf dist && scripts/build.js",
|
|
"test": "echo 'no tests'",
|
|
"watch": "scripts/build.js --watch"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/facebook/react.git",
|
|
"directory": "compiler/packages/react-compiler-runtime"
|
|
}
|
|
}
|