-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.42 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.42 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": "theme-image-block",
"version": "1.1.1",
"description": "Use images from your theme as blocks in content.",
"author": "Happy Prime",
"license": "GPL-2.0-or-later",
"keywords": [
"plugin",
"wordpress"
],
"homepage": "https://github.com/happyprime/theme-image-block/",
"repository": {
"type": "git",
"url": "git+https://github.com/happyprime/theme-image-block.git"
},
"bugs": {
"url": "https://github.com/happyprime/theme-image-block/"
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@happyprime/eslint-config": "^1.0.0",
"@wordpress/dependency-extraction-webpack-plugin": "^6.40.0",
"@wordpress/icons": "^11.7.0",
"@wordpress/npm-package-json-lint-config": "^5.40.0",
"babel-loader": "^10.0.0",
"copy-webpack-plugin": "^13.0.1",
"npm-package-json-lint": "^9.1.0",
"webpack": "^5.105.2",
"webpack-cli": "^6.0.1"
},
"scripts": {
"build": "webpack --mode production",
"start": "webpack --mode development --watch",
"lint": "eslint ./blocks/src",
"fix": "eslint ./blocks/src --fix",
"lint:package": "node ./node_modules/npm-package-json-lint/dist/cli.js ./"
},
"npmpackagejsonlint": {
"extends": "@wordpress/npm-package-json-lint-config"
}
}