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