-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.28 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
{
"type": "module",
"name": "@faergeek/tiny-browser-hmr-webpack-plugin",
"version": "0.0.0-semantically-released",
"repository": "[email protected]:faergeek/tiny-browser-hmr-webpack-plugin.git",
"author": "Sergey Slipchenko <[email protected]>",
"license": "MIT",
"module": "plugin.js",
"exports": {
".": "./plugin.js",
"./client": "./client.js",
"./client?*": "./client.js?*"
},
"files": [
"client.js",
"plugin.js"
],
"scripts": {
"cleanup": "rimraf demos/*/build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --max-warnings 0 .",
"demo": "node demos/cli.js"
},
"packageManager": "[email protected]",
"peerDependencies": {
"webpack": "^5.30.0"
},
"dependencies": {
"ws": "^8.10.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.7",
"utf-8-validate": "^6.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@faergeek/eslint-config": "^6.0.0",
"cpy": "^11.0.0",
"eslint": "^8.0.0",
"express": "^4.18.2",
"html-webpack-plugin": "^5.5.0",
"prettier": "^3.0.0",
"rimraf": "^6.0.0",
"semantic-release": "^24.0.0",
"webextension-polyfill": "^0.12.0",
"webpack": "^5.74.0"
}
}