-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "esbuild-minimizer-webpack-plugin",
"version": "1.0.0-beta.2",
"description": "Esbuild plugin for webpack",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist",
"src"
],
"keywords": [
"esbuild",
"webpack",
"webpack-plugin",
"esbuild-webpack-plugin",
"esbuild-minimizer-webpack-plugin"
],
"scripts": {
"build": "rm -rf ./dist && npx tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1eeing/esbuild-minimizer-webpack-plugin.git"
},
"author": "1eeing <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/1eeing/esbuild-minimizer-webpack-plugin/issues"
},
"homepage": "https://github.com/1eeing/esbuild-minimizer-webpack-plugin#readme",
"peerDependencies": {
"webpack": "^4.0.0"
},
"devDependencies": {
"@types/cacache": "^12.0.1",
"@types/find-cache-dir": "^3.2.0",
"@types/node": "^13.13.5",
"@types/serialize-javascript": "^1.5.0",
"@types/webpack": "^4.41.12",
"typescript": "^3.8.3",
"webpack": "^4.43.0"
},
"dependencies": {
"cacache": "^15.0.3",
"esbuild": "^0.2.6",
"find-cache-dir": "^3.3.1",
"jest-worker": "^26.0.0",
"p-limit": "^2.3.0",
"serialize-javascript": "^3.0.0",
"webpack-sources": "^1.4.3"
}
}