-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "mv3-hot-reload",
"version": "0.2.7",
"description": "Enable hot reloading for content script and background script in MV3.",
"bin": "./out/bin/mv3-hot-reload.js",
"repository": "https://github.com/pacexy/mv3-hot-reload",
"author": "pacexy",
"license": "MIT",
"private": false,
"keywords": [
"chrome",
"extension",
"hot reload",
"automatic reload",
"reload"
],
"scripts": {
"dev": "tsc -w",
"prepare": "npm run build",
"build": "tsc"
},
"files": [
"out",
"content.js",
"background.js"
],
"devDependencies": {
"@types/chrome": "^0.0.146",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.178",
"@types/node": "^16.0.1",
"@types/ws": "^7.4.6",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.5",
"jest": "^27.0.6",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
},
"dependencies": {
"chokidar": "^3.5.2",
"lodash": "^4.17.21",
"ws": "^7.5.3"
}
}