-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.25 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.25 KB
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
53
54
55
56
{
"name": "@wordpress/dependency-extraction-webpack-plugin",
"version": "6.36.0",
"description": "Extract WordPress script dependencies from webpack bundles.",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"gutenberg",
"webpack",
"dependency"
],
"homepage": "https://github.com/WordPress/gutenberg/tree/HEAD/packages/dependency-extraction-webpack-plugin/README.md",
"repository": {
"type": "git",
"url": "https://github.com/WordPress/gutenberg.git",
"directory": "packages/dependency-extraction-webpack-plugin"
},
"bugs": {
"url": "https://github.com/WordPress/gutenberg/issues"
},
"engines": {
"node": ">=18.12.0",
"npm": ">=8.19.2"
},
"files": [
"lib",
"build-types"
],
"main": "lib/index.js",
"exports": {
".": {
"types": "./lib/types.d.ts",
"default": "./lib/index.js"
},
"./lib/util": "./lib/util.js",
"./package.json": "./package.json"
},
"types": "lib/types.d.ts",
"dependencies": {
"json2php": "^0.0.7"
},
"devDependencies": {
"atob": "^2.1.2",
"css-loader": "^6.2.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.9.2",
"mkdirp": "^3.0.1"
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"publishConfig": {
"access": "public"
}
}