forked from gregberge/error-overlay-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.48 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": "error-overlay-webpack-plugin",
"description": "Webpack plugin to automatically display an error overlay in your application.",
"keywords": [
"webpack",
"plugin",
"webpack-plugin",
"react",
"react-error-overlay",
"error-overlay"
],
"bugs": "https://github.com/gregberge/error-overlay-webpack-plugin/issues",
"repository": "github:gregberge/error-overlay-webpack-plugin",
"version": "1.1.0",
"type": "commonjs",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
},
"scripts": {
"build": "rm -rf ./dist && rollup -c && cp -r ./src/entries ./dist/entries",
"format": "prettier --write \"**/*.{js,json,md}\" \"*.{js,json,md}\"",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"release": "standard-version && conventional-github-releaser -p angular"
},
"devDependencies": {
"conventional-github-releaser": "^3.1.5",
"esbuild": "^0.14.21",
"eslint": "^8.9.0",
"prettier": "^2.5.1",
"rollup": "^2.67.2",
"rollup-plugin-esbuild": "^4.8.2",
"standard-version": "^9.3.2"
},
"license": "MIT",
"dependencies": {
"react-dev-utils": "^12.0.0",
"react-error-overlay": "6.0.9",
"sockjs-client": "^1.5.2",
"url": "^0.11.0"
},
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0"
}
}