-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 836 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 836 Bytes
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
{
"name": "@feugene/webpack-plugin-server-push",
"version": "0.0.7",
"description": "Create Nginx conf for assets bundle for Server Push (http2)",
"keywords": [
"request",
"webpack",
"webpack-plugin",
"server-push"
],
"license": "MIT",
"homepage": "https://github.com/efureev/webpack-plugin-server-push",
"scripts": {
"build": "rm -rf dist && tsc -p src"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"peerDependencies": {
"webpack": ">=4.0.0 < 6.0.0"
},
"engines": {
"node": ">= 14"
},
"dependencies": {
"@types/webpack": "^5.28.0"
},
"devDependencies": {
"typescript": "^4.6.4",
"webpack": "^5.72.0"
},
"repository": {
"type": "git",
"url": "https://github.com/efureev/webpack-plugin-server-push.git"
}
}