2022-03-18 15:35:45 -07:00
|
|
|
{
|
|
|
|
"name": "@astrojs/react",
|
|
|
|
"description": "Use React components within Astro",
|
2024-03-11 03:25:30 -07:00
|
|
|
"version": "3.1.0",
|
2022-03-18 15:35:45 -07: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 16:55:33 -04:00
|
|
|
"astro-integration",
|
2022-03-21 19:31:15 +00:00
|
|
|
"astro-component",
|
|
|
|
"renderer",
|
|
|
|
"react"
|
|
|
|
],
|
2022-03-18 15:35:45 -07:00
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
2022-07-11 21:10:34 +02:00
|
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/react/",
|
2022-03-18 15:35:45 -07:00
|
|
|
"exports": {
|
|
|
|
".": "./dist/index.js",
|
|
|
|
"./client.js": "./client.js",
|
2022-03-31 09:51:29 -07:00
|
|
|
"./client-v17.js": "./client-v17.js",
|
2022-03-18 15:35:45 -07:00
|
|
|
"./server.js": "./server.js",
|
2022-03-31 09:51:29 -07:00
|
|
|
"./server-v17.js": "./server-v17.js",
|
2022-03-18 15:35:45 -07:00
|
|
|
"./package.json": "./package.json",
|
|
|
|
"./jsx-runtime": "./jsx-runtime.js"
|
|
|
|
},
|
2023-05-17 16:54:00 +08:00
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"client.js",
|
|
|
|
"client-v17.js",
|
|
|
|
"context.js",
|
|
|
|
"jsx-runtime.js",
|
|
|
|
"server.js",
|
|
|
|
"server-v17.js",
|
2023-08-25 23:28:23 +08:00
|
|
|
"static-html.js",
|
|
|
|
"vnode-children.js"
|
2023-05-17 16:54:00 +08:00
|
|
|
],
|
2022-03-18 15:35:45 -07:00
|
|
|
"scripts": {
|
|
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
2022-03-23 19:46:16 -05:00
|
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
2023-11-21 17:19:43 +00:00
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
2024-01-31 00:29:26 -08:00
|
|
|
"test": "astro-scripts test \"test/**/*.test.js\""
|
2022-03-18 15:35:45 -07:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-11-17 22:02:05 +08:00
|
|
|
"@vitejs/plugin-react": "^4.2.0",
|
2023-08-23 19:52:13 +08:00
|
|
|
"ultrahtml": "^1.3.0"
|
2022-03-18 15:35:45 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-11-21 12:09:19 +08:00
|
|
|
"@types/react": "^18.2.37",
|
|
|
|
"@types/react-dom": "^18.2.15",
|
2022-03-18 15:35:45 -07:00
|
|
|
"astro": "workspace:*",
|
|
|
|
"astro-scripts": "workspace:*",
|
2023-08-16 13:40:57 -04:00
|
|
|
"cheerio": "1.0.0-rc.12",
|
2023-08-23 19:52:13 +08:00
|
|
|
"react": "^18.1.0",
|
|
|
|
"react-dom": "^18.1.0",
|
2024-02-28 23:20:17 +08:00
|
|
|
"vite": "^5.1.4"
|
2022-03-18 15:35:45 -07:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2022-10-14 15:16:41 -03:00
|
|
|
"@types/react": "^17.0.50 || ^18.0.21",
|
2023-06-21 21:09:49 +08:00
|
|
|
"@types/react-dom": "^17.0.17 || ^18.0.6",
|
|
|
|
"react": "^17.0.2 || ^18.0.0",
|
|
|
|
"react-dom": "^17.0.2 || ^18.0.0"
|
2022-03-18 15:35:45 -07:00
|
|
|
},
|
|
|
|
"engines": {
|
2023-07-24 20:47:07 +02:00
|
|
|
"node": ">=18.14.1"
|
2023-10-03 16:25:25 +02:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"provenance": true
|
2022-03-18 15:35:45 -07:00
|
|
|
}
|
|
|
|
}
|