-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 KB
/
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
46
47
48
49
50
51
52
53
{
"name": "vite-plugin-backend-hmr",
"version": "0.0.10",
"description": "Support the component for HMR in back-end projects",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"license": "MIT",
"author": "southlink",
"scripts": {
"dev": "pnpm run build -- --watch --ignore-watch examples",
"build": "tsup src/index.ts --dts --format cjs,esm",
"example:react": "cd examples/react && pnpm run dev"
},
"homepage": "https://github.com/SouthLink/vite-plugin-backend-hmr#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/SouthLink/vite-plugin-backend-hmr.git"
},
"keywords": [
"vite",
"plugin"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=14",
"pnpm": ">=7.0.0"
},
"dependencies": {
"path": "^0.12.7",
"url": "^0.11.0"
},
"devDependencies": {
"@types/node": "^18.7.11",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"bumpp": "^8.2.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"tsup": "^6.2.2",
"typescript": "^4.7.4",
"vite": "^3.0.9"
}
}