-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.19 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.19 KB
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
37
{
"name": "multi-block-starter",
"version": "0.1.0",
"description": "A starter configuration for creating a WordPress plugin with multiple blocks.",
"author": "Troy Chaplin",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=20.10.0"
},
"scripts": {
"build": "wp-scripts build --experimental-modules --blocks-manifest",
"lint": "pnpm run /^lint:/",
"format": "pnpm run /^format:/",
"lint:css": "wp-scripts lint-style",
"format:css": "wp-scripts lint-style --fix",
"lint:js": "wp-scripts lint-js",
"format:js": "wp-scripts lint-js --fix",
"lint:php": "composer run lint",
"format:php": "composer format",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "wp-scripts start --experimental-modules --blocks-manifest"
},
"devDependencies": {
"@wordpress/blocks": "^15.15.0",
"@wordpress/data": "^10.42.0",
"@wordpress/dom-ready": "^4.42.0",
"@wordpress/block-editor": "^15.15.0",
"@wordpress/element": "^6.42.0",
"@wordpress/i18n": "^6.15.0",
"@wordpress/icons": "^12.0.0",
"@wordpress/interactivity": "^6.42.0",
"@wordpress/scripts": "^31.7.0"
}
}