2022-03-18 22:35:45 +00:00
|
|
|
{
|
|
|
|
"name": "@astrojs/react",
|
|
|
|
"description": "Use React components within Astro",
|
2022-10-10 15:44:22 +00:00
|
|
|
"version": "1.2.0",
|
2022-03-18 22:35:45 +00:00
|
|
|
"type": "module",
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"author": "withastro",
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/withastro/astro.git",
|
|
|
|
"directory": "packages/integrations/react"
|
|
|
|
},
|
2022-03-21 19:31:15 +00:00
|
|
|
"keywords": [
|
2022-07-08 20:55:33 +00:00
|
|
|
"astro-integration",
|
2022-03-21 19:31:15 +00:00
|
|
|
"astro-component",
|
|
|
|
"renderer",
|
|
|
|
"react"
|
|
|
|
],
|
2022-03-18 22:35:45 +00:00
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
2022-07-11 19:10:34 +00:00
|
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/react/",
|
2022-03-18 22:35:45 +00:00
|
|
|
"exports": {
|
|
|
|
".": "./dist/index.js",
|
|
|
|
"./client.js": "./client.js",
|
2022-03-31 16:51:29 +00:00
|
|
|
"./client-v17.js": "./client-v17.js",
|
2022-03-18 22:35:45 +00:00
|
|
|
"./server.js": "./server.js",
|
2022-03-31 16:51:29 +00:00
|
|
|
"./server-v17.js": "./server-v17.js",
|
2022-03-18 22:35:45 +00:00
|
|
|
"./package.json": "./package.json",
|
|
|
|
"./jsx-runtime": "./jsx-runtime.js"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
2022-03-24 00:46:16 +00:00
|
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
2022-03-18 22:35:45 +00:00
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\""
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-07-14 18:39:58 +00:00
|
|
|
"@babel/core": ">=7.0.0-0 <8.0.0",
|
2022-05-17 15:44:50 +00:00
|
|
|
"@babel/plugin-transform-react-jsx": "^7.17.12"
|
2022-03-18 22:35:45 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-05-12 16:42:34 +00:00
|
|
|
"@types/react": "^17.0.45",
|
2022-05-16 18:33:16 +00:00
|
|
|
"@types/react-dom": "^17.0.17",
|
2022-03-18 22:35:45 +00:00
|
|
|
"astro": "workspace:*",
|
|
|
|
"astro-scripts": "workspace:*",
|
2022-05-12 16:42:34 +00:00
|
|
|
"react": "^18.1.0",
|
|
|
|
"react-dom": "^18.1.0"
|
2022-03-18 22:35:45 +00:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2022-03-31 16:51:29 +00:00
|
|
|
"react": "^17.0.2 || ^18.0.0",
|
|
|
|
"react-dom": "^17.0.2 || ^18.0.0"
|
2022-03-18 22:35:45 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2022-07-15 12:15:04 +00:00
|
|
|
"node": "^14.18.0 || >=16.12.0"
|
2022-03-18 22:35:45 +00:00
|
|
|
}
|
|
|
|
}
|