-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.55 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
52
53
54
55
56
{
"name": "simple-definition-list-blocks",
"version": "6.0.0",
"author": "Chiaki Okamoto <[email protected]> (https://chiilog.com/)",
"dependencies": {
"@wordpress/block-editor": "^12.21.0",
"@wordpress/blocks": "^12.30.0",
"@wordpress/i18n": "^4.53.0",
"@wordpress/icons": "^9.44.0"
},
"devDependencies": {
"@wordpress/browserslist-config": "^5.36.0",
"@wordpress/env": "^9.5.0",
"@wordpress/eslint-plugin": "^17.10.0",
"@wordpress/prettier-config": "^3.10.0",
"@wordpress/scripts": "^27.4.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "npm:[email protected]"
},
"license": "GPL-2.0+",
"main": "build/index.js",
"release-it": {
"hooks": {
"before:bump": "bash ./bin/build.sh simple-definition-list-blocks ${version}",
"after:bump": "bash ./bin/create-zip.sh simple-definition-list-blocks",
"after:release": "bash ./bin/cleanup.sh simple-definition-list-blocks"
},
"github": {
"release": true,
"assets": [
"simple-definition-list-blocks.zip"
]
},
"npm": {
"publish": false
}
},
"repository": {
"url": "[email protected]:chiilog/simple-definition-list-blocks.git",
"type": "git"
},
"scripts": {
"build": "wp-scripts build",
"format": "wp-scripts format",
"plugin-zip": "wp-scripts plugin-zip",
"wp-env": "wp-env",
"lint:js": "wp-scripts lint-js",
"packages-update": "wp-scripts packages-update",
"start": "wp-scripts start"
},
"wp-env": {
"plugin-dir": "simple-definition-list-blocks",
"plugin-name": "simple-definition-list-blocks",
"welcome-build-command": "npm run start"
}
}