forked from WordPress/gutenberg
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.15 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
{
"name": "@wordpress/create-block",
"version": "4.32.0",
"description": "Generates PHP, JS and CSS code for registering a block for a WordPress plugin.",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"gutenberg",
"block",
"scaffold"
],
"homepage": "https://github.com/WordPress/gutenberg/tree/HEAD/packages/create-block/README.md",
"repository": {
"type": "git",
"url": "https://github.com/WordPress/gutenberg.git",
"directory": "packages/create-block"
},
"bugs": {
"url": "https://github.com/WordPress/gutenberg/issues"
},
"engines": {
"node": ">=14",
"npm": ">=6.14.4"
},
"files": [
"lib"
],
"main": "index.js",
"bin": {
"wp-create-block": "./index.js"
},
"dependencies": {
"@wordpress/lazy-import": "file:../lazy-import",
"chalk": "^4.0.0",
"change-case": "^4.1.2",
"check-node-version": "^4.1.0",
"commander": "^9.2.0",
"execa": "^4.0.2",
"fast-glob": "^3.2.7",
"inquirer": "^7.1.0",
"make-dir": "^3.0.0",
"mustache": "^4.0.0",
"npm-package-arg": "^8.1.5",
"rimraf": "^3.0.2",
"write-pkg": "^4.0.0"
},
"publishConfig": {
"access": "public"
}
}