-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 847 Bytes
/
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
{
"version": "0.2.0",
"name": "devtools-ignore-webpack-plugin",
"repository": "https://github.com/mondaychen/devtools-ignore-webpack-plugin.git",
"homepage": "https://github.com/mondaychen/devtools-ignore-webpack-plugin",
"description": "A Webpack plugin to ignore sourcemap in Chrome devtools",
"keywords": [
"webpack",
"plugin",
"devtools"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src/"
],
"author": "Mengdi Chen <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=16.14.2",
"npm": ">=8.5.0"
},
"scripts": {
"build": "npx tsc",
"format": "prettier --write ."
},
"devDependencies": {
"prettier": "2.7.1",
"typescript": "^4.9.3",
"webpack": "^5.20.0"
},
"peerDependencies": {
"webpack": "^5.20.0"
}
}