summaryrefslogtreecommitdiff
path: root/packages/integrations/react/package.json
blob: 14a8a7745f1884cc90448a80db3ea55d0ee45708 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
  "name": "@astrojs/react",
  "description": "Use React components within Astro",
  "version": "3.0.0-rc.4",
  "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"
  },
  "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-rc.2",
    "@vitejs/plugin-react": "^4.0.4",
    "ultrahtml": "^1.3.0"
  },
  "devDependencies": {
    "@types/react": "^18.2.21",
    "@types/react-dom": "^18.2.7",
    "astro": "workspace:*",
    "astro-scripts": "workspace:*",
    "chai": "^4.3.7",
    "cheerio": "1.0.0-rc.12",
    "react": "^18.1.0",
    "react-dom": "^18.1.0",
    "vite": "^4.4.9"
  },
  "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",
    "react-dom": "^17.0.2 || ^18.0.0"
  },
  "engines": {
    "node": ">=18.14.1"
  }
}