-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.4 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
54
55
56
57
58
59
60
{
"name": "@devmade/express-hot-reload",
"version": "0.0.0-development",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"release": "semantic-release"
},
"keywords": [
"express",
"hot",
"reload",
"auto",
"refresh",
"browser",
"sse",
"middleware"
],
"author": "Julio Teixeira",
"license": "MIT",
"description": "An express middleware to support hot reloading ON BROWSERS, using SSE, now you wont need a heavy bundler just for the hot reload the browser anymore!",
"repository": {
"type": "git",
"url": "https://github.com/jcesarprog/express-hot-reload"
},
"dependencies": {
"express": "^4.21.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/node": "^22.5.5",
"@types/qs": "^6.9.16",
"@types/range-parser": "^1.2.7",
"@types/send": "^0.17.4",
"@types/serve-static": "^1.15.7",
"semantic-release": "^24.1.1",
"tsup": "^8.2.4",
"typescript": "^5.6.2"
},
"engines": {
"npm": ">=10.8.2",
"node": ">=20.14.0"
},
"engineStrict": true,
"files": [
"dist",
"readme.md"
],
"publishConfig": {
"access": "public"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/your-github-username"
}
}