-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.67 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.67 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
40
41
42
43
44
45
46
47
48
{
"name": "@humanmade/authorship",
"version": "0.2.17",
"description": "Authorship",
"private": true,
"main": "src/index.tsx",
"license": "GPL-3.0-or-later",
"scripts": {
"lint": "concurrently -n CSS,JS -c cyan.bold,yellow.bold \"npm run lint:css\" \"npm run lint:js\"",
"lint:css": "wp-scripts lint-style src/",
"lint:js": "wp-scripts lint-js --ext .js,.jsx,.ts,.tsx src/",
"env:cli": "npx @wordpress/env run cli",
"env:destroy": "npx @wordpress/env destroy",
"env:start": "npx @wordpress/env start",
"env:stop": "npx @wordpress/env stop",
"start": "wp-scripts start --hot",
"build": "wp-scripts build",
"bump:patch": "bump patch --commit 'The v%s release' package.json package-lock.json README.md plugin.php",
"bump:minor": "bump minor --commit 'The v%s release' package.json package-lock.json README.md plugin.php",
"bump:major": "bump major --commit 'The v%s release' package.json package-lock.json README.md plugin.php"
},
"engines": {
"node": "24"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"react-select": "5.10.2"
},
"devDependencies": {
"@types/lodash": "^4.17.24",
"@wordpress/api-fetch": "^7.43.0",
"@wordpress/compose": "^7.43.0",
"@wordpress/data": "^10.43.0",
"@wordpress/editor": "^14.43.0",
"@wordpress/i18n": "^6.16.0",
"@wordpress/plugins": "^7.43.0",
"@wordpress/scripts": "^31.8.0",
"@wordpress/url": "^4.43.0",
"classnames": "^2.2",
"concurrently": "^5.3.0",
"lodash": "^4.18.1",
"react": "^18.3.1",
"version-bump-prompt": "^6.1.0",
"wp-types": "^4.69.0"
}
}