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
|
{
"name": "draggable-post-order",
"version": "1.0.1",
"description": "Drag'n'drop posts to order them",
"author": "Daniel Weipert <code@drogueronin.de>",
"license": "GPL-2.0-or-later",
"keywords": [
"post-type",
"custom-post-type",
"order",
"drag"
],
"homepage": "https://gitlab.com/DRogueRonin/wp-plugin-draggable-post-order",
"repository": "https://gitlab.com/DRogueRonin/wp-plugin-draggable-post-order",
"bugs": "https://gitlab.com/DRogueRonin/wp-plugin-draggable-post-order",
"main": "src/index.js",
"devDependencies": {
"@wordpress/scripts": "^12.6.0"
},
"scripts": {
"build": "wp-scripts build",
"start": "wp-scripts start",
"format:js": "wp-scripts format-js src",
"format:css": "wp-scripts lint-style src -- --fix",
"lint:js": "wp-scripts lint-js src",
"lint:css": "wp-scripts lint-style src",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update"
}
}
|