-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.08 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": "@dekode/create-project-base-block",
"version": "1.2.0",
"description": "Generates PHP, JS and CSS code for registering a block for a WordPress plugin.",
"author": "Dekode Interaktiv AS",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"gutenberg",
"dekode",
"block",
"scaffold"
],
"homepage": "http://dekode.no",
"repository": {
"type": "git",
"url": "git://github.com/DekodeInteraktiv/create-project-base-block"
},
"bugs": {
"url": "https://github.com/DekodeInteraktiv/create-project-base-block/issues"
},
"engines": {
"node": ">=14",
"npm": ">=6.9"
},
"files": [
"lib"
],
"main": "index.js",
"bin": {
"create-project-base-block": "./index.js"
},
"scripts": {
"format": "prettier --write ."
},
"dependencies": {
"chalk": "^4.0.0",
"check-node-version": "^4.1.0",
"commander": "^4.1.0",
"fast-glob": "^2.2.7",
"inquirer": "^7.1.0",
"lodash": "^4.17.21",
"make-dir": "^3.0.0",
"mustache": "^4.0.0",
"write-pkg": "^4.0.0",
"prettier": "npm:wp-prettier@^2.2.1-beta-1"
},
"publishConfig": {
"access": "public"
}
}