-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.96 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
{
"name": "wz-blocks",
"version": "0.6.0",
"description": "Plugin used to build blocks for WebberZone plugins",
"author": "WebberZone",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"start": "wp-scripts start",
"packages-update": "wp-scripts packages-update",
"start:alerts": "wp-scripts start blocks/alerts/src/index.js --output-path=blocks/alerts/build/",
"build:alerts": "wp-scripts build blocks/alerts/src/index.js --output-path=blocks/alerts/build/",
"start:crp": "wp-scripts start blocks/related-posts/src/index.js --output-path=blocks/related-posts/build/",
"build:crp": "wp-scripts build blocks/related-posts/src/index.js --output-path=blocks/related-posts/build/",
"start:kb": "wp-scripts start blocks/kb/src/index.js --output-path=blocks/kb/build/",
"build:kb": "wp-scripts build blocks/kb/src/index.js --output-path=blocks/kb/build/",
"start:pop": "wp-scripts start blocks/popular-posts/src/index.js --output-path=blocks/popular-posts/build/",
"build:pop": "wp-scripts build blocks/popular-posts/src/index.js --output-path=blocks/popular-posts/build/",
"start:wfp": "wp-scripts start blocks/followed-posts/src/index.js --output-path=blocks/followed-posts/build/",
"build:wfp": "wp-scripts build blocks/followed-posts/src/index.js --output-path=blocks/followed-posts/build/",
"start:wzpa": "wp-scripts start blocks/popular-authors/src/index.js --output-path=blocks/popular-authors/build/",
"build:wzpa": "wp-scripts build blocks/popular-authors/src/index.js --output-path=blocks/popular-authors/build/"
},
"dependencies": {
"@wordpress/block-editor": "^12.10.0",
"@wordpress/blocks": "^12.19.0",
"@wordpress/components": "^25.8.0",
"@wordpress/i18n": "^4.42.0",
"prettier": "^3.0.3"
},
"devDependencies": {
"@wordpress/prettier-config": "^2.25.0",
"@wordpress/scripts": "^26.13.0"
}
}