forked from WebExp0528/webpack-ext-reloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.93 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@mariuszste/webpack-ext-reloader-mv3",
"version": "2.1.3",
"private": false,
"description": "Watch for file changes and reload WebExtensions on browsers.",
"main": "dist/webpack-ext-reloader.js",
"bin": "./dist/webpack-ext-reloader-cli.js",
"types": "typings/webpack-ext-reloader.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/mariuszste/webpack-ext-reloader.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.{js,ts}": [
"npm run lint:files",
"npm run format:files"
]
},
"scripts": {
"build": "NODE_ENV=production webpack",
"test": "NODE_ENV=test webpack && mocha dist/tests.js",
"analyze": "NODE_ENV=production webpack --env.analyze",
"start:dev": "NODE_ENV=development webpack --watch",
"start:sample:chrome": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=chrome webpack --config sample/webpack.plugin.js --watch",
"start:sample:firefox": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=firefox webpack --config sample/webpack.plugin.js --watch",
"prepublishOnly": "npm run build",
"lint": "eslint \"{src,client,typings,specs}/**/*.ts\" --fix --format codeframe",
"format": "prettier --write \"{src,client,typings,specs}/**/*.ts\"",
"lint:files": "eslint --fix --format codeframe",
"format:files": "prettier --write"
},
"author": "Rubens Pinheiro Gonçalves Cavalcante",
"license": "MIT",
"bugs": {
"url": "https://github.com/mariuszste/webpack-ext-reloader-mv3/issues"
},
"homepage": "https://github.com/mariuszste/webpack-ext-reloader-mv3#readme",
"keywords": [
"webpack",
"plugin",
"browser",
"extension",
"WebExtensions",
"hot-reload"
],
"dependencies": {
"@types/webextension-polyfill": "^0.8.3",
"@types/webpack": "^5.28.0",
"@types/webpack-sources": "^3.2.0",
"clean-webpack-plugin": "^4.0.0",
"colors": "^1.4.0",
"cross-env": "^7.0.3",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"source-map-loader": "^4.0.1",
"useragent": "^2.3.0",
"webextension-polyfill": "^0.9.0",
"webpack-sources": "^3.2.3",
"ws": "^8.6.0"
},
"peerDependencies": {
"webpack": "^5.61.0"
},
"devDependencies": {
"@babel/core": "7.17.10",
"@babel/eslint-parser": "7.17.0",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-logical-assignment-operators": "7.16.7",
"@babel/plugin-proposal-object-rest-spread": "7.17.3",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-regenerator": "7.17.9",
"@babel/preset-env": "7.17.10",
"@types/chai": "4.3.1",
"@types/lodash": "4.14.182",
"@types/minimist": "1.2.2",
"@types/mocha": "9.1.1",
"@types/sinon": "10.0.11",
"@types/useragent": "2.3.1",
"@types/ws": "8.5.3",
"@typescript-eslint/eslint-plugin": "5.23.0",
"@typescript-eslint/parser": "5.23.0",
"autoprefixer": "10.4.7",
"babel-loader": "8.2.5",
"chai": "4.3.6",
"copy-webpack-plugin": "10.2.4",
"css-loader": "6.7.1",
"eslint": "8.15.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-formatter-codeframe": "7.32.1",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.5.0",
"husky": "4.3.8",
"json-loader": "0.5.7",
"lint-staged": "12.4.1",
"mini-css-extract-plugin": "2.6.0",
"mocha": "9.2.2",
"prettier": "2.6.2",
"raw-loader": "4.0.2",
"sinon": "13.0.1",
"source-map-support": "0.5.21",
"style-loader": "3.3.1",
"ts-loader": "9.3.0",
"typescript": "4.6.4",
"webpack": "5.72.1",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.9.2"
}
}