-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.43 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.43 KB
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
{
"type": "module",
"name": "@faergeek/tiny-browser-hmr-webpack-plugin",
"version": "1.2.7",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/faergeek/tiny-browser-hmr-webpack-plugin.git"
},
"author": "Sergei Slipchenko <faergeek@gmail.com>",
"license": "MIT",
"exports": {
".": {
"types": "./dist/plugin.d.ts",
"default": "./dist/plugin.js"
},
"./client": "./client.js",
"./client?*": "./client.js?*"
},
"files": [
"client.js",
"dist",
"plugin.js"
],
"scripts": {
"cleanup": "rimraf demos/*/build dist",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --max-warnings 0 .",
"demo": "node demos/cli.js",
"build": "tsc --build"
},
"packageManager": "pnpm@10.33.2",
"peerDependencies": {
"@types/node": ">= 22.0.0",
"webpack": "^5.30.0"
},
"dependencies": {
"@types/ws": "^8.18.1",
"ws": "^8.10.0"
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@faergeek/eslint-config": "^8.0.0",
"@types/node": "^24.3.1",
"cpy": "^13.0.0",
"eslint": "^9.19.0",
"express": "^5.0.0",
"git-cliff": "^2.10.0",
"globals": "^17.0.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "^3.0.0",
"rimraf": "^6.0.0",
"typescript": "^6.0.0",
"webextension-polyfill": "^0.12.0",
"webpack": "^5.74.0"
}
}