-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 958 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 958 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
31
32
{
"name": "post-link-block",
"private": true,
"description": "A block that wraps inner blocks in a link to the current post, for use in query loops.",
"author": "Human Made Limited",
"license": "GPL-2.0-or-later",
"scripts": {
"build": "wp-scripts build --webpack-src-dir=src/blocks",
"start": "wp-scripts start --webpack-src-dir=src/blocks",
"lint:js": "wp-scripts lint-js",
"lint:css": "wp-scripts lint-style",
"lint:php": "composer run lint",
"lint": "npm run lint:js && npm run lint:css && npm run lint:php",
"format": "wp-scripts format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/humanmade/post-link-block.git"
},
"bugs": {
"url": "https://github.com/humanmade/post-link-block/issues"
},
"homepage": "https://humanmade.com",
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"devDependencies": {
"@humanmade/block-editor-components": "^0.10.0",
"@wordpress/scripts": "^30.25.0"
}
}