2022-03-18 15:35:45 -07:00
|
|
|
{
|
|
|
|
"name": "@astrojs/react",
|
|
|
|
"description": "Use React components within Astro",
|
2024-08-09 14:49:10 -07:00
|
|
|
"version": "3.6.2",
|
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",
|
2024-05-22 08:24:55 -04:00
|
|
|
"./actions": "./dist/actions.js",
|
2022-03-18 15:35:45 -07:00
|
|
|
"./client.js": "./client.js",
|
2022-03-31 09:51:29 -07:00
|
|
|
"./client-v17.js": "./client-v17.js",
|
2024-06-14 06:52:17 +01:00
|
|
|
"./server.js": {
|
|
|
|
"default": "./server.js",
|
|
|
|
"types": "./server.d.ts"
|
|
|
|
},
|
|
|
|
"./server-v17.js": {
|
|
|
|
"default": "./server-v17.js",
|
|
|
|
"types": "./server-v17.d.ts"
|
|
|
|
},
|
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",
|
2024-06-14 06:52:17 +01:00
|
|
|
"server.d.ts",
|
2023-05-17 16:54:00 +08:00
|
|
|
"server-v17.js",
|
2024-06-14 06:52:17 +01:00
|
|
|
"server-v17.d.ts",
|
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": {
|
2024-09-30 10:17:49 +08:00
|
|
|
"@vitejs/plugin-react": "^4.3.2",
|
2024-04-22 22:52:30 +08:00
|
|
|
"ultrahtml": "^1.5.3"
|
2022-03-18 15:35:45 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-09-30 10:17:49 +08:00
|
|
|
"@types/react": "^18.3.10",
|
2024-04-30 12:00:05 +08:00
|
|
|
"@types/react-dom": "^18.3.0",
|
2022-03-18 15:35:45 -07:00
|
|
|
"astro": "workspace:*",
|
|
|
|
"astro-scripts": "workspace:*",
|
2024-08-13 22:29:37 +08:00
|
|
|
"cheerio": "1.0.0",
|
2024-04-30 12:00:05 +08:00
|
|
|
"react": "^18.3.1",
|
|
|
|
"react-dom": "^18.3.1",
|
2024-09-26 14:57:59 +01:00
|
|
|
"vite": "^5.4.8"
|
2022-03-18 15:35:45 -07:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2024-05-09 15:34:41 +02:00
|
|
|
"@types/react": "^17.0.50 || ^18.0.21",
|
|
|
|
"@types/react-dom": "^17.0.17 || ^18.0.6",
|
2024-05-07 13:13:03 -04:00
|
|
|
"react": "^17.0.2 || ^18.0.0 || ^19.0.0-beta",
|
|
|
|
"react-dom": "^17.0.2 || ^18.0.0 || ^19.0.0-beta"
|
2022-03-18 15:35:45 -07:00
|
|
|
},
|
|
|
|
"engines": {
|
2024-04-10 14:53:55 +01:00
|
|
|
"node": "^18.17.1 || ^20.3.0 || >=21.0.0"
|
2023-10-03 16:25:25 +02:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"provenance": true
|
2022-03-18 15:35:45 -07:00
|
|
|
}
|
|
|
|
}
|