-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 789 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 789 Bytes
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": "disable-embeds",
"description": "WordPress plugin that disables the feature to embed WordPress posts from your site and others.",
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/swissspidy/disable-embeds.git"
},
"homepage": "https://github.com/swissspidy/disable-embeds#readme",
"bugs": {
"url": "https://github.com/swissspidy/disable-embeds/issues"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"@wordpress/blocks": "^15.18.0",
"@wordpress/dom-ready": "^4.41.0"
},
"devDependencies": {
"@wordpress/scripts": "^30.27.0",
"webpack-cli": "^6.0.1"
},
"scripts": {
"build": "wp-scripts build",
"format:js": "wp-scripts format-js",
"lint:js": "wp-scripts lint-js",
"start": "wp-scripts start"
}
}