aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/react/package.json
diff options
context:
space:
mode:
authorGravatar github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> 2025-06-05 14:25:23 +0000
committerGravatar github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> 2025-06-05 14:25:23 +0000
commite586d7d704d475afe3373a1de6ae20d504f79d6d (patch)
tree7e3fa24807cebd48a86bd40f866d792181191ee9 /packages/integrations/react/package.json
downloadastro-e586d7d704d475afe3373a1de6ae20d504f79d6d.tar.gz
astro-e586d7d704d475afe3373a1de6ae20d504f79d6d.tar.zst
astro-e586d7d704d475afe3373a1de6ae20d504f79d6d.zip
Sync from a8e1c0a7402940e0fc5beef669522b315052df1blatest
Diffstat (limited to 'packages/integrations/react/package.json')
-rw-r--r--packages/integrations/react/package.json67
1 files changed, 67 insertions, 0 deletions
diff --git a/packages/integrations/react/package.json b/packages/integrations/react/package.json
new file mode 100644
index 000000000..a329cc51e
--- /dev/null
+++ b/packages/integrations/react/package.json
@@ -0,0 +1,67 @@
+{
+ "name": "@astrojs/react",
+ "description": "Use React components within Astro",
+ "version": "4.3.0",
+ "type": "module",
+ "types": "./dist/index.d.ts",
+ "author": "withastro",
+ "license": "MIT",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/withastro/astro.git",
+ "directory": "packages/integrations/react"
+ },
+ "keywords": [
+ "astro-integration",
+ "astro-component",
+ "renderer",
+ "react"
+ ],
+ "bugs": "https://github.com/withastro/astro/issues",
+ "homepage": "https://docs.astro.build/en/guides/integrations-guide/react/",
+ "exports": {
+ ".": "./dist/index.js",
+ "./actions": "./dist/actions.js",
+ "./client.js": "./dist/client.js",
+ "./client-v17.js": "./dist/client-v17.js",
+ "./server.js": "./dist/server.js",
+ "./server-v17.js": "./dist/server-v17.js",
+ "./package.json": "./package.json",
+ "./jsx-runtime": "./dist/jsx-runtime.js"
+ },
+ "files": [
+ "dist"
+ ],
+ "scripts": {
+ "build": "astro-scripts build \"src/**/*.ts\" && tsc",
+ "build:ci": "astro-scripts build \"src/**/*.ts\"",
+ "dev": "astro-scripts dev \"src/**/*.ts\"",
+ "test": "astro-scripts test \"test/**/*.test.js\""
+ },
+ "dependencies": {
+ "@vitejs/plugin-react": "^4.5.0",
+ "ultrahtml": "^1.6.0",
+ "vite": "^6.3.5"
+ },
+ "devDependencies": {
+ "@types/react": "^18.3.23",
+ "@types/react-dom": "^18.3.7",
+ "astro": "workspace:*",
+ "astro-scripts": "workspace:*",
+ "cheerio": "1.0.0",
+ "react": "^18.3.1",
+ "react-dom": "^18.3.1"
+ },
+ "peerDependencies": {
+ "@types/react": "^17.0.50 || ^18.0.21 || ^19.0.0",
+ "@types/react-dom": "^17.0.17 || ^18.0.6 || ^19.0.0",
+ "react": "^17.0.2 || ^18.0.0 || ^19.0.0",
+ "react-dom": "^17.0.2 || ^18.0.0 || ^19.0.0"
+ },
+ "engines": {
+ "node": "18.20.8 || ^20.3.0 || >=22.0.0"
+ },
+ "publishConfig": {
+ "provenance": true
+ }
+}