-
-
Notifications
You must be signed in to change notification settings - Fork 241
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.19 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
{
"name": "@vitejs/plugin-react-oxc",
"version": "0.4.3",
"description": "The future default Vite plugin for React projects",
"keywords": [
"fast refresh",
"oxc",
"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-oxc"
},
"files": [
"dist"
],
"type": "module",
"exports": "./dist/index.js",
"scripts": {
"dev": "tsdown --watch ./src --watch ../common",
"build": "tsdown",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@rolldown/pluginutils": "1.0.0-rc.9"
},
"devDependencies": {
"@vitejs/react-common": "workspace:*",
"tsdown": "^0.21.3",
"vite": "catalog:rolldown-vite"
},
"peerDependencies": {
"vite": "^6.3.0 || ^7.0.0"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}