UNPKG

hot-accept-webpack-plugin

Version:

With ease add HMR accepting code to need modules

83 lines 2.06 kB
{ "name": "hot-accept-webpack-plugin", "version": "4.0.2", "description": "With ease add HMR accepting code to need modules", "author": { "name": "Artem Batura", "email": "artembatura.dev@gmail.com" }, "repository": { "type": "git", "url": "https://github.com/artembatura/hot-accept-webpack-plugin" }, "bugs": { "url": "https://github.com/artembatura/hot-accept-webpack-plugin/issues" }, "license": "MIT", "main": "build/index.js", "typings": "build/index.d.ts", "files": [ "build" ], "scripts": { "build": "tsc -b .", "clean-build": "rimraf build", "prepublishOnly": "run-s clean-build build", "lint-staged": "lint-staged", "test": "jest", "watch": "tsc -b . --watch" }, "dependencies": { "modify-source-webpack-plugin": "4.0.1" }, "devDependencies": { "@types/jest": "^26.0.15", "@types/node": "^14.14.10", "@types/rimraf": "^3.0.0", "@types/webpack-v4": "npm:@types/webpack@5.28.0", "@typescript-eslint/eslint-plugin": "^4.9.1", "@typescript-eslint/parser": "^4.9.1", "eslint": "^7.15.0", "eslint-config-prettier": "^7.0.0", "eslint-formatter-pretty": "^4.0.0", "eslint-import-resolver-node": "^0.3.4", "eslint-plugin-import": "^2.22.1", "eslint-plugin-import-helpers": "^1.1.0", "eslint-plugin-prettier": "^3.2.0", "husky": "^4.3.5", "jest": "^26.6.3", "lint-staged": "^10.5.3", "npm-run-all": "^4.1.5", "prettier": "^2.2.1", "rimraf": "^3.0.2", "ts-jest": "^26.4.4", "typescript": "^4.1.2", "webpack": "^5.15.0", "webpack-v4": "npm:webpack@4.46.0" }, "peerDependencies": { "webpack": "^4.37.0 || ^5.0.0" }, "husky": { "hooks": { "pre-commit": "run-s lint-staged" } }, "lint-staged": { "*.{js,ts,jsx,tsx,md,json}": [ "prettier --write" ], "*.{js,ts,jsx,tsx}": [ "eslint --format=pretty --fix" ] }, "keywords": [ "webpack", "plugin", "hmr", "hot", "module", "reload", "accept" ] }