2022-03-18 15:35:45 -07:00
|
|
|
{
|
|
|
|
"name": "@astrojs/react",
|
|
|
|
"description": "Use React components within Astro",
|
2024-11-21 06:47:58 -08:00
|
|
|
"version": "3.6.3",
|
2022-03-18 15:35:45 -07:00
|
|
|
"type": "module",
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"author": "withastro",
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2024-11-15 23:43:34 +08:00
|
|
|
"url": "git+https://github.com/withastro/astro.git",
|
2022-03-18 15:35:45 -07:00
|
|
|
"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-11-15 23:43:34 +08:00
|
|
|
"./server.js": "./server.js",
|
|
|
|
"./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",
|
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-11-27 16:20:16 +08:00
|
|
|
"@vitejs/plugin-react": "^4.3.4",
|
2024-11-21 12:12:00 +01:00
|
|
|
"ultrahtml": "^1.5.3",
|
2024-11-27 16:20:16 +08:00
|
|
|
"vite": "^5.4.11"
|
2022-03-18 15:35:45 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-10-28 22:00:15 +08:00
|
|
|
"@types/react": "^18.3.12",
|
2024-10-15 14:42:58 +08:00
|
|
|
"@types/react-dom": "^18.3.1",
|
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",
|
2024-11-21 12:12:00 +01:00
|
|
|
"react-dom": "^18.3.1"
|
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
|
|
|
}
|
|
|
|
}
|