-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.24 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
38
39
{
"name": "post-queue",
"version": "0.2.3",
"scripts": {
"build": "wp-scripts build",
"start": "wp-scripts start",
"plugin-zip": "wp-scripts plugin-zip",
"lint:scripts": "eslint client --ext .js,.jsx,.ts,.tsx",
"lint:styles": "wp-scripts lint-style",
"lint:fix:scripts": "eslint client --ext .js,.jsx,.ts,.tsx --fix",
"lint:fix:styles": "wp-scripts lint-style --fix"
},
"author": {
"name": "Automattic",
"url": "https://automattic.com"
},
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress"
],
"description": "A WordPress plugin designed to help you manage and schedule your blog posts efficiently. It allows you to configure the number of posts to publish per day, set start and end times for publishing, and pause or resume the queue as needed.",
"dependencies": {
"@wordpress/api-fetch": "^7.9.0",
"@wordpress/edit-post": "^8.9.0",
"@wordpress/interface": "^7.0.0",
"@wordpress/plugins": "^7.9.0",
"@wordpress/scripts": "^30.2.0",
"react": "^18.3.1",
"sortablejs": "^1.15.3"
},
"devDependencies": {
"@wordpress/eslint-plugin": "^21.3.0",
"@wordpress/stylelint-config": "^23.2.0"
},
"overrides": {
"basic-ftp": "5.2.1",
"form-data": "4.0.4"
}
}