-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.32 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.32 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
{
"name": "wp-crontrol",
"version": "1.21.0",
"description": "Take control of the cron events on your WordPress website or WooCommerce store",
"license": "GPL-2.0-or-later",
"private": true,
"author": "John Blackbourn",
"repository": "johnbillion/wp-crontrol",
"homepage": "https://wp-crontrol.com",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@johnbillion/plugin-infrastructure": "2.8.0",
"@jsdevtools/version-bump-prompt": "6.1.0",
"@playwright/test": "^1.55.0",
"@types/node": "^24.3.0",
"sharp-cli": "^4.0.0",
"typescript": "^5.9.2"
},
"scripts": {
"icons": "sharp -i .wordpress-org/icon.svg -o .wordpress-org/icon-128x128.png -f png --palette resize 128 128 && sharp -i .wordpress-org/icon.svg -o .wordpress-org/icon-256x256.png -f png --palette resize 256 256",
"screenshots": "sharp -i .wordpress-org/screenshot-*.png -o .wordpress-org -f png --palette resize 1514 844",
"version": "npm install # See https://github.com/JS-DevTools/version-bump-prompt/issues/42",
"bump:patch": "bump patch --commit 'Version %s.' wp-crontrol.php package.json package-lock.json readme.txt",
"bump:minor": "bump minor --commit 'Version %s.' wp-crontrol.php package.json package-lock.json readme.txt",
"bump:major": "bump major --commit 'Version %s.' wp-crontrol.php package.json package-lock.json readme.txt"
}
}