node-hot-loader
Version:
Hot module replacement for Node.js applications
89 lines (88 loc) • 2.65 kB
JSON
{
"name": "node-hot-loader",
"version": "1.23.0",
"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 && chmod +x ./dist/node-hot.js",
"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.27.0",
"@babel/core": "7.26.10",
"@babel/eslint-parser": "7.27.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.26.9",
"@eslint/compat": "1.2.8",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.25.1",
"@js-toolkit/configs": "3.94.2",
"@types/webpack-env": "1.18.8",
"babel-plugin-transform-inline-environment-variables": "0.4.4",
"conventional-changelog-cli": "5.0.0",
"copyfiles": "2.4.1",
"eslint": "9.25.1",
"eslint-config-prettier": "10.1.2",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.6",
"prettier": "3.5.3",
"rimraf": "6.0.1",
"webpack": "5.99.7"
},
"dependencies": {
"@babel/register": "7.25.9",
"memfs": "4.17.0",
"source-map-support": "0.5.21",
"yargs": "17.7.2"
},
"peerDependencies": {
"webpack": ">= 2.x"
},
"workspaces": [
"examples/*"
],
"packageManager": "yarn@4.9.1"
}