mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
750d5328c9
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
83 lines
2.1 KiB
JSON
83 lines
2.1 KiB
JSON
{
|
|
"name": "@astrojs/react",
|
|
"description": "Use React components within Astro",
|
|
"version": "3.6.1",
|
|
"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"
|
|
},
|
|
"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": "./client.js",
|
|
"./client-v17.js": "./client-v17.js",
|
|
"./server.js": {
|
|
"default": "./server.js",
|
|
"types": "./server.d.ts"
|
|
},
|
|
"./server-v17.js": {
|
|
"default": "./server-v17.js",
|
|
"types": "./server-v17.d.ts"
|
|
},
|
|
"./package.json": "./package.json",
|
|
"./jsx-runtime": "./jsx-runtime.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"client.js",
|
|
"client-v17.js",
|
|
"context.js",
|
|
"jsx-runtime.js",
|
|
"server.js",
|
|
"server.d.ts",
|
|
"server-v17.js",
|
|
"server-v17.d.ts",
|
|
"static-html.js",
|
|
"vnode-children.js"
|
|
],
|
|
"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.3.1",
|
|
"ultrahtml": "^1.5.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.3.3",
|
|
"@types/react-dom": "^18.3.0",
|
|
"astro": "workspace:*",
|
|
"astro-scripts": "workspace:*",
|
|
"cheerio": "1.0.0-rc.12",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"vite": "^5.3.5"
|
|
},
|
|
"peerDependencies": {
|
|
"@types/react": "^17.0.50 || ^18.0.21",
|
|
"@types/react-dom": "^17.0.17 || ^18.0.6",
|
|
"react": "^17.0.2 || ^18.0.0 || ^19.0.0-beta",
|
|
"react-dom": "^17.0.2 || ^18.0.0 || ^19.0.0-beta"
|
|
},
|
|
"engines": {
|
|
"node": "^18.17.1 || ^20.3.0 || >=21.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"provenance": true
|
|
}
|
|
}
|