-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
87 lines (87 loc) · 2.61 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "node-hot-loader",
"version": "1.21.11",
"description": "Hot module replacement for Node.js applications",
"author": "VZH",
"license": "MIT",
"homepage": "https://github.com/vlazh/node-hot-loader",
"repository": {
"type": "git",
"url": "https://github.com/vlazh/node-hot-loader"
},
"bugs": {
"url": "https://github.com/vlazh/node-hot-loader/issues"
},
"keywords": [
"hmr",
"node",
"node.js",
"webpack",
"express",
"hot",
"reload",
"loader",
"server-side",
"server",
"module",
"replacement",
"hot-reload",
"hot-replacement",
"node-hot-reload",
"node-hot-loader",
"express-hot-reload",
"express-hot-loader",
"cli"
],
"main": "./node-hot.js",
"bin": {
"node-hot": "node-hot.js",
"node-hot-loader": "node-hot.js"
},
"browserslist": [
"maintained node versions"
],
"scripts": {
"clean": "rimraf ./dist/",
"copy:configs": "copyfiles package.json LICENSE README.md CHANGELOG.md ./dist/",
"build": "npm run clean && babel src --out-dir ./dist/ --copy-files && npm run copy:configs",
"patch-publish": "npm run build && npm version patch --no-workspaces-update -m 'v%s' && npm run copy:configs && cd ./dist && npm publish && git push --follow-tags",
"minor-publish": "npm run build && npm version minor --no-workspaces-update -m 'v%s' && npm run copy:configs && cd ./dist && npm publish && git push --follow-tags",
"version": "conventional-changelog -i CHANGELOG.md -s && git add CHANGELOG.md",
"changelog": "conventional-changelog -i CHANGELOG.md -s"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.24.7",
"@eslint/compat": "^1.1.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.6.0",
"@js-toolkit/configs": "^3.93.0",
"@types/eslint": "^8.56.10",
"@types/webpack-env": "^1.18.5",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"conventional-changelog-cli": "^5.0.0",
"copyfiles": "^2.4.1",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"typescript": "^5.5.2",
"webpack": "^5.92.1"
},
"dependencies": {
"@babel/register": "^7.24.6",
"require-from-string": "^2.0.2",
"source-map-support": "^0.5.21",
"yargs": "^17.7.2"
},
"peerDependencies": {
"webpack": ">= 2.x"
},
"packageManager": "[email protected]"
}