-
-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.08 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.08 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@vitejs/plugin-react",
"version": "6.0.1",
"description": "The default Vite plugin for React projects",
"keywords": [
"fast refresh",
"react",
"react-refresh",
"vite",
"vite-plugin"
],
"homepage": "https://github.com/vitejs/vite-plugin-react/tree/main/packages/plugin-react#readme",
"bugs": {
"url": "https://github.com/vitejs/vite-plugin-react/issues"
},
"license": "MIT",
"author": "Evan You",
"contributors": [
"Alec Larson",
"Arnaud Barré"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vitejs/vite-plugin-react.git",
"directory": "packages/plugin-react"
},
"files": [
"dist",
"types"
],
"type": "module",
"imports": {
"#optionalTypes": "./types/optionalTypes.d.ts"
},
"exports": {
".": "./dist/index.js",
"./preamble": "./types/preamble.d.ts"
},
"scripts": {
"dev": "tsdown --watch ./src --watch ../common",
"build": "tsdown",
"prepublishOnly": "npm run build",
"test-unit": "vitest run"
},
"dependencies": {
"@rolldown/pluginutils": "1.0.0-rc.9"
},
"devDependencies": {
"@babel/core": "8.0.0-rc.2",
"@rolldown/plugin-babel": "^0.2.1",
"@vitejs/react-common": "workspace:*",
"babel-plugin-react-compiler": "^1.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rolldown": "1.0.0-rc.9",
"tsdown": "^0.21.3",
"vite": "^8.0.0"
},
"peerDependencies": {
"@rolldown/plugin-babel": "^0.1.7 || ^0.2.0",
"babel-plugin-react-compiler": "^1.0.0",
"vite": "^8.0.0"
},
"peerDependenciesMeta": {
"@rolldown/plugin-babel": {
"optional": true
},
"babel-plugin-react-compiler": {
"optional": true
}
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"compatiblePackages": {
"schemaVersion": 1,
"rolldown": {
"type": "compatible",
"versions": "^1.0.0-beta.44",
"note": "You can use Rolldown's built-in feature directly."
},
"rollup": {
"type": "incompatible",
"reason": "Uses Rolldown-specific APIs or Vite-specific APIs"
}
}
}