-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.94 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": "bubble-quote",
"version": "0.1.0",
"description": "An enhanced quote block with special emphasis on the quote.",
"author": "The WordPress Contributors",
"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:bubble-quote": "wp-scripts start blocks/bubble-quote/src/index.js --output-path=blocks/bubble-quote/build/",
"build:bubble-quote": "wp-scripts build blocks/bubble-quote/src/index.js --output-path=blocks/bubble-quote/build/",
"start:quote": "wp-scripts start blocks/bubble-quote-quote/src/index.js --output-path=blocks/bubble-quote-quote/build/",
"build:quote": "wp-scripts build blocks/bubble-quote-quote/src/index.js --output-path=blocks/bubble-quote-quote/build/",
"start:quote-container": "wp-scripts start blocks/bubble-quote-inner-container/src/index.js --output-path=blocks/bubble-quote-inner-container/build/",
"build:quote-container": "wp-scripts build blocks/bubble-quote-inner-container/src/index.js --output-path=blocks/bubble-quote-inner-container/build/",
"start:citation": "wp-scripts start blocks/bubble-quote-citation/src/index.js --output-path=blocks/bubble-quote-citation/build/",
"build:citation": "wp-scripts build blocks/bubble-quote-citation/src/index.js --output-path=blocks/bubble-quote-citation/build/",
"start:bubble-tail": "wp-scripts start blocks/bubble-quote-tail/src/index.js --output-path=blocks/bubble-quote-tail/build/",
"build:bubble-tail": "wp-scripts build blocks/bubble-quote-tail/src/index.js --output-path=blocks/bubble-quote-tail/build/"
},
"dependencies": {
"@wordpress/block-editor": "^7.0.0",
"@wordpress/blocks": "^11.0.0",
"@wordpress/i18n": "^4.2.1",
"classnames": "^2.3.1"
},
"devDependencies": {
"@wordpress/scripts": "^17.1.0"
}
}