-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 858 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 858 Bytes
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
{
"name": "plugin-slug",
"version": "0.1.0",
"description": "Short description of the plugin.",
"license": "GPL-2.0-or-later",
"private": true,
"repository": "GaryJones/plugin-boilerplate",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "wp-scripts build",
"start": "wp-scripts start",
"format": "wp-scripts format",
"lint:js": "wp-scripts lint-js",
"lint:css": "wp-scripts lint-style",
"bump:patch": "bump patch --commit 'Version %s.' package.json plugin-slug.php README.md",
"bump:minor": "bump minor --commit 'Version %s.' package.json plugin-slug.php README.md",
"bump:major": "bump major --commit 'Version %s.' package.json plugin-slug.php README.md"
},
"devDependencies": {
"@wordpress/dom-ready": "^4.48.0",
"@wordpress/i18n": "^6.21.0",
"@wordpress/scripts": "^32.4.0",
"version-bump-prompt": "^6.1.0"
}
}