-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.58 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
{
"name": "gutenberg-workshop",
"version": "1.0.0",
"description": "This plugin adds a different Gutenberg blocks in the Gutenberg editor of your WordPress dashboard.",
"main": "index.js",
"scripts": {
"build": "wp-scripts build",
"start": "wp-scripts start",
"build:dynamic-block": "wp-scripts build dynamic-block/assets/js/block.js --output-path=dynamic-block/build",
"build:dynamic-block-watch": "wp-scripts start dynamic-block/assets/js/block.js --output-path=dynamic-block/build",
"build:dynamic-block-ssr": "wp-scripts build dynamic-block-ssr/assets/js/block.js --output-path=dynamic-block-ssr/build",
"build:dynamic-block-ssr-watch": "wp-scripts start dynamic-block-ssr/assets/js/block.js --output-path=dynamic-block-ssr/build",
"build:custom-category": "wp-scripts build custom-category/assets/js/block.js --output-path=custom-category/build",
"build:custom-category-watch": "wp-scripts start custom-category/assets/js/block.js --output-path=custom-category/build",
"dev:store-example-watch": "wp-scripts start store-example/assets/js/block.js --output-path=store-example/build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imranhsayed/gutenberg-workshop.git"
},
"keywords": [
"gutenberg",
"gutenberg-plugin",
"wordpress-plugin"
],
"author": "Imran Sayed",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/imranhsayed/gutenberg-workshop/issues"
},
"homepage": "https://github.com/imranhsayed/gutenberg-workshop#readme",
"devDependencies": {
"@wordpress/scripts": "3.3.0"
}
}