-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 989 Bytes
/
package.json
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
{
"name": "vite-plugin-react-pol",
"version": "0.1.12",
"author": {
"name": "Rockheung",
"email": "[email protected]"
},
"files": [
"dist"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild && npm run patch-cjs",
"patch-cjs": "tsx patchCJS.ts",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"vite": "^4.2.0 | ^5.0.0"
},
"devDependencies": {
"tsx": "^3.12.7",
"typescript": "^5.0.2",
"unbuild": "^1.2.1"
},
"dependencies": {
"@types/debug": "^4.1.12",
"@types/express": "^4.17.17",
"@types/jsdom": "^21.1.1",
"@types/node": "^20.3.1",
"debug": "^4.3.4",
"http-proxy-middleware": "^2.0.6",
"jsdom": "^22.1.0",
"vite": "^4.2.0"
}
}