-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.18 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.18 KB
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
{
"name": "query-picker",
"version": "0.1.0",
"description": "A Query Loop Variation that allows for custom post picking",
"author": "pbking",
"main": "build/index.js",
"files": [
"build",
"query-picker.php"
],
"scripts": {
"build": "wp-scripts build --webpack-copy-php --experimental-modules",
"watch": "wp-scripts start --webpack-copy-php --experimental-modules",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"plugin-unpack": "rm -rf ./release && mkdir -p ./release && unzip -o ./query-picker.zip -d ./release",
"plugin-test-env": "wp-now start --blueprint=plugin-test-blueprint.json --path=./release/query-picker",
"plugin-test": "npm run build && npm run plugin-zip && npm run plugin-unpack && npm run plugin-test-env",
"start": "wp-env start --xdebug",
"stop": "wp-env stop"
},
"devDependencies": {
"@wordpress/block-editor": "^14.15.0",
"@wordpress/blocks": "^14.9.0",
"@wordpress/components": "^29.6.0",
"@wordpress/env": "^10.20.0",
"@wordpress/hooks": "^4.20.0",
"@wordpress/scripts": "^30.13.0"
}
}