-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.34 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
36
{
"name": "wp-block-accordion",
"version": "2.4.2",
"description": "List of items with title and content.",
"author": "SMFB Dinamo",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"build:item": "wp-scripts build blocks/item/src/index.js --output-path=blocks/item/build/",
"build:container": "wp-scripts build blocks/container/src/index.js blocks/container/src/view.js --output-path=blocks/container/build/",
"build": "npm run build:item && npm run build:container",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:css:fix": "wp-scripts lint-style --fix",
"lint:js": "wp-scripts lint-js",
"lint:js:fix": "wp-scripts lint-js --fix",
"start:item": "wp-scripts start blocks/item/src/index.js --output-path=blocks/item/build/",
"start:container": "wp-scripts start blocks/container/src/index.js --output-path=blocks/container/build/",
"packages-update": "wp-scripts packages-update"
},
"dependencies": {
"@wordpress/block-editor": "^8.0.11",
"@wordpress/blocks": "^11.1.4",
"@wordpress/components": "^19.1.6",
"@wordpress/dom-ready": "^3.2.3",
"@wordpress/element": "^4.0.4",
"@wordpress/hooks": "^3.2.2",
"@wordpress/i18n": "^4.2.4",
"@wordpress/primitives": "^3.0.4",
"lodash": "^4.17.21"
},
"devDependencies": {
"@wordpress/scripts": "^19.2.2",
"prettier": "^2.5.1"
}
}