-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 826 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 826 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
{
"name": "webpack5-cdn-plugin",
"version": "0.0.9",
"description": "webpack plugin for uploading assets to you cdn",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AngusFu/webpack5-cdn-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"cdn"
],
"author": "AngusFu",
"license": "MIT",
"bugs": {
"url": "https://github.com/AngusFu/webpack5-cdn-plugin/issues"
},
"homepage": "https://github.com/AngusFu/webpack5-cdn-plugin#readme",
"devDependencies": {
"tsup": "^5.12.5",
"typescript": "^4.6.3"
},
"dependencies": {
"@types/webpack": "^5.28.0"
},
"peerDependencies": {
"webpack": "^5.0.0"
}
}