This repository has been archived by the owner on Jul 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 KB
/
package.json
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
50
51
52
53
54
55
56
57
58
{
"name": "@washingtonstateuniversity/hrswp-plugin-blocks",
"version": "3.7.0",
"description": "A WSU HRS WordPress plugin to provide custom blocks and WP block editor adjustments.",
"author": "Adam Turner",
"contributors": [
{
"name": "washingtonstateuniversity"
}
],
"license": "GPL-3.0-or-later",
"keywords": [
"wordpress",
"plugin",
"editor",
"blocks"
],
"homepage": "https://github.com/washingtonstateuniversity/hrswp-plugin-blocks/blob/stable/README.md",
"repository": {
"type": "git",
"url": "https://github.com/washingtonstateuniversity/hrswp-plugin-blocks"
},
"bugs": {
"url": "https://github.com/washingtonstateuniversity/hrswp-plugin-blocks/issues"
},
"engines": {
"node": ">=20.10.0",
"npm": ">=10.2.3"
},
"main": "build/index.js",
"devDependencies": {
"@wordpress/icons": "^9.44.0",
"@wordpress/scripts": "^27.4.0",
"classnames": "^2.5.1",
"cssnano": "^6.1.1",
"lodash": "^4.17.21",
"mark.js": "^8.11.1",
"npm-run-all": "^4.1.5",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^9.5.2",
"prettier": "npm:wp-prettier@3.0.3"
},
"scripts": {
"build": "run-s lint 'build:*'",
"build:wp": "wp-scripts build src/index.js src/lib/* --webpack-copy-php",
"format": "run-p 'format:*'",
"format:wp": "wp-scripts format",
"format:php": "composer format",
"lint": "run-p 'lint:*'",
"lint:script": "wp-scripts lint-js",
"lint:style": "wp-scripts lint-style",
"lint:php": "composer lint",
"lint:pkg": "wp-scripts lint-pkg-json",
"lint:docs": "wp-scripts lint-md-docs",
"export": "wp-scripts plugin-zip",
"start": "wp-scripts start src/index.js src/lib/* --webpack-copy-php"
}
}