-
-
Notifications
You must be signed in to change notification settings - Fork 238
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.29 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
{
"name": "@vitejs/plugin-react-swc",
"version": "4.3.0",
"private": true,
"description": "Speed up your Vite dev server with SWC",
"keywords": [
"fast refresh",
"react",
"react-refresh",
"swc",
"vite",
"vite-plugin"
],
"homepage": "https://github.com/vitejs/vite-plugin-react/tree/main/packages/plugin-react-swc#readme",
"bugs": {
"url": "https://github.com/vitejs/vite-plugin-react/issues"
},
"license": "MIT",
"author": "Arnaud Barré (https://github.com/ArnaudBarre)",
"repository": {
"type": "git",
"url": "git+https://github.com/vitejs/vite-plugin-react.git",
"directory": "packages/plugin-react-swc"
},
"type": "module",
"scripts": {
"dev": "tsdown --watch ./src --watch ../common",
"build": "tsdown",
"test": "playwright test"
},
"dependencies": {
"@rolldown/pluginutils": "1.0.0-rc.13",
"@swc/core": "^1.15.11"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.12.2",
"@vitejs/react-common": "workspace:*",
"fs-extra": "^11.3.4",
"prettier": "^3.0.3",
"tsdown": "^0.21.7",
"typescript": "^5.9.3"
},
"peerDependencies": {
"vite": "^4 || ^5 || ^6 || ^7 || ^8"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}