This repository was archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.67 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.67 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
50
51
52
53
54
55
56
{
"name": "@washingtonstateuniversity/hrswp-theme-wds",
"version": "0.7.0",
"private": true,
"description": "A block-based theme for WSU Human Resource Services built on design tools introduced in WordPress 6.1 and using the WSU Web Design System.",
"author": "Washington State University, Adam Turner",
"license": "GPL-3.0-or-later",
"keywords": [
"wordpress",
"theme"
],
"homepage": "https://github.com/washingtonstateuniversity/hrswp-theme-wds/blob/stable/README.md",
"repository": {
"type": "git",
"url": "https://github.com/washingtonstateuniversity/hrswp-theme-wds"
},
"bugs": {
"url": "https://github.com/washingtonstateuniversity/hrswp-theme-wds/issues"
},
"engines": {
"node": ">=20.10.0",
"npm": ">=10.2.3"
},
"main": "build/index.js",
"devDependencies": {
"@wordpress/icons": "^9.46.0",
"@wordpress/scripts": "^27.6.0",
"classnames": "^2.5.1",
"copy-webpack-plugin": "12.0.2",
"cssnano": "^6.1.2",
"fast-glob": "3.3.2",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"postcss-cli": "11.0.0",
"postcss-import": "16.1.0",
"postcss-preset-env": "9.5.5",
"prettier": "npm:wp-prettier@3.0.3"
},
"scripts": {
"build": "run-s lint 'build:*'",
"build:wp": "wp-scripts build",
"format": "run-p 'format:*'",
"format:js": "wp-scripts format",
"format:php": "composer format",
"lint": "run-p 'lint:*'",
"lint:js": "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",
"check-engines": "wp-scripts check-engines",
"start": "wp-scripts start"
}
}