-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 946 Bytes
/
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
{
"name": "create-wp-block",
"version": "2.6.0",
"description": "Extends the @wordpress/create-block package by adding new features for flexible block scaffolding such as support for multiple blocks.",
"main": "./index.js",
"bin": {
"create-wp-block": "./index.js"
},
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dgwyer/create-wp-block.git"
},
"keywords": [
"wordpress",
"gutenberg",
"block",
"scaffold"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/dgwyer/create-wp-block/issues"
},
"homepage": "https://github.com/dgwyer/create-wp-block#readme",
"dependencies": {
"@wordpress/create-block": "^3.8.0",
"execa": "^6.1.0",
"replace-in-file": "^6.3.5",
"yargs": "^17.5.1"
},
"publishConfig": {
"access": "public"
}
}