-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.35 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
{
"name": "wxyz-blocks",
"description": "Structure to work with multiple blocks in a single plugin.",
"version": "1.0.0-beta",
"author": "sarahcssiqueira",
"license": "MIT",
"main": "",
"scripts": {
"start": "wp-scripts start",
"build": "wp-scripts build",
"start:block-w": "wp-scripts start ./blocks/block-w/src/index.js --output-path=./blocks/block-w/build",
"build:block-w": "wp-scripts build ./blocks/block-w/src/index.js --output-path=./blocks/block-w/build",
"start:block-x": "wp-scripts start ./blocks/block-x/src/index.js --output-path=./blocks/block-x/build",
"build:block-x": "wp-scripts build ./blocks/block-x/src/index.js --output-path=./blocks/block-x/build",
"start:block-y": "wp-scripts start ./blocks/block-y/src/index.js --output-path=./blocks/block-y/build",
"build:block-y": "wp-scripts build ./blocks/block-y/src/index.js --output-path=./blocks/block-y/build",
"start:block-z": "wp-scripts start ./blocks/block-z/src/index.js --output-path=./blocks/block-z/build",
"build:block-z": "wp-scripts build ./blocks/block-z/src/index.js --output-path=./blocks/block-z/build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sarahcssiqueira/wxyz-blocks.git"
},
"devDependencies": {
"@wordpress/i18n": "^4.38.0",
"@wordpress/scripts": "^30.3.0"
}
}