Files
react/compiler/packages/react-forget-runtime/package.json
Lauren Tan f01f74d9e1 Also build react-forget-runtime with rollup
This adds rollup to the runtime and adds a new plugin to add the license banner 
+ inject the `"use no memo"` directive. We need to inject it there as rollup 
currently strips out unknown directives during bundling.
2024-04-02 12:13:40 -04:00

17 lines
317 B
JSON

{
"name": "react-forget-runtime",
"version": "0.0.1",
"description": "Runtime for React Forget",
"license": "MIT",
"files": [
"src"
],
"dependencies": {
"react": "^18.2.0"
},
"scripts": {
"build": "rimraf dist && rollup --config --bundleConfigAsCjs",
"test": "echo 'no tests'"
}
}