astro/packages/integrations/react/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "@astrojs/react",
"description": "Use React components within Astro",
"version": "3.0.0-beta.2",
"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",
"./client.js": "./client.js",
"./client-v17.js": "./client-v17.js",
"./server.js": "./server.js",
"./server-v17.js": "./server-v17.js",
"./package.json": "./package.json",
"./jsx-runtime": "./jsx-runtime.js"
},
2023-05-17 08:54:00 +00:00
"files": [
"dist",
"client.js",
"client-v17.js",
"context.js",
"jsx-runtime.js",
"server.js",
"server-v17.js",
"static-html.js"
],
"scripts": {
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"build:ci": "astro-scripts build \"src/**/*.ts\"",
"dev": "astro-scripts dev \"src/**/*.ts\""
},
"dependencies": {
"@astrojs/internal-helpers": "0.2.0-beta.1",
"@vitejs/plugin-react": "^4.0.3"
},
"devDependencies": {
2023-06-21 13:09:49 +00:00
"@types/react": "^17.0.62",
"@types/react-dom": "^17.0.20",
"astro": "workspace:*",
"astro-scripts": "workspace:*",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"peerDependencies": {
"@types/react": "^17.0.50 || ^18.0.21",
2023-06-21 13:09:49 +00: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"
},
"engines": {
2023-07-24 18:47:07 +00:00
"node": ">=18.14.1"
}
}