-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
24 lines (24 loc) · 981 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
{
"name": "build-all-the-things",
"version": "0.1.0",
"description": "Example block scaffolded with Create Block tool.",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"start": "wp-scripts start --webpack-src-dir blocks --webpack-copy-php",
"build": "wp-scripts build --webpack-src-dir blocks --webpack-copy-php",
"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",
"create-block": "npx @wordpress/create-block ${npm_config_name} --target-dir blocks/${npm_config_name} --no-plugin",
"create-block:windows": "npx @wordpress/create-block %npm_config_name% --target-dir blocks/%npm_config_name% --no-plugin"
},
"devDependencies": {
"@wordpress/prettier-config": "^4.13.0",
"@wordpress/scripts": "^30.6.0"
},
"prettier": "@wordpress/prettier-config"
}