-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.47 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.47 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
49
{
"name": "@twenty-bellows/meta-edit",
"version": "1.0.0",
"description": "Provide a user interface to edit post meta fields in the WordPress block editor",
"license": "GPL-2.0-or-later",
"author": "Twenty Bellows",
"main": "build/editor.js",
"repository": {
"type": "git",
"url": "https://github.com/twenty-bellows/meta-edit"
},
"keywords": [
"wordpress",
"post-meta",
"custom-fields",
"block-editor",
"gutenberg"
],
"scripts": {
"build": "wp-scripts build --webpack-copy-php --experimental-modules",
"watch": "wp-scripts start --webpack-copy-php --experimental-modules",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"packages-update": "wp-scripts packages-update",
"test:unit": "wp-scripts test-unit-js",
"test:unit:watch": "wp-scripts test-unit-js --watch"
},
"peerDependencies": {
"@wordpress/components": ">=30.0.0",
"@wordpress/data": ">=10.0.0",
"@wordpress/editor": ">=14.0.0",
"@wordpress/hooks": ">=4.0.0",
"@wordpress/plugins": ">=7.0.0"
},
"devDependencies": {
"@wordpress/components": "^30.6.0",
"@wordpress/data": "^10.33.0",
"@wordpress/e2e-test-utils-playwright": "^1.33.0",
"@wordpress/editor": "^14.33.2",
"@wordpress/env": "^10.33.0",
"@wordpress/hooks": "^4.33.0",
"@wordpress/interactivity": "^6.33.0",
"@wordpress/plugins": "^7.33.0",
"@wordpress/prettier-config": "^4.33.0",
"@wordpress/scripts": "^30.3.0",
"prettier": "npm:wp-prettier@^3.0.3"
}
}