astro/packages/renderers/renderer-react/package.json
Matthew Phillips 20eaddb2a7
Fix for using React in the static build (#2369)
* Fix react in the static build

* Adds a changeset
2022-01-13 13:28:29 -05:00

31 lines
813 B
JSON

{
"name": "@astrojs/renderer-react",
"description": "Use React components within Astro",
"version": "0.4.0",
"type": "module",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/withastro/astro.git",
"directory": "packages/renderers/renderer-react"
},
"bugs": "https://github.com/withastro/astro/issues",
"homepage": "https://astro.build",
"exports": {
".": "./index.js",
"./*": "./*",
"./client.js": "./client.js",
"./server.js": "./server.js",
"./package.json": "./package.json",
"./jsx-runtime": "./jsx-runtime.js"
},
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.16.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
}