-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1008 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1008 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
39
{
"name": "js-entry-webpack-plugin",
"version": "0.0.2",
"description": "creates webpack bundles into your js entry",
"main": "index.js",
"types": "typings.d.ts",
"files": [
"lib/",
"index.js",
"typings.d.ts"
],
"keywords": [
"webpack",
"plugin",
"js-entry",
"js-entry-webpack-plugin"
],
"author": "lawler61 <lawler4v@gmail.com> (https://github.com/lawler61)",
"license": "MIT",
"homepage": "https://github.com/lawler61/js-entry-webpack-plugin",
"repository": "https://github.com/lawler61/js-entry-webpack-plugin.git",
"scripts": {
"examples": "node examples/build-examples.js",
"build": "rm -rf lib && tsc"
},
"devDependencies": {
"@vue/tsconfig": "^0.1.2",
"css-loader": "^6.6.0",
"js-entry-webpack-plugin": "^0.0.1",
"mini-css-extract-plugin": "^2.5.3",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"typescript": "^4.5.5",
"webpack": "^5.68.0"
},
"peerDependencies": {
"webpack": "^5.20.0"
}
}