This repository was archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.71 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
57
58
59
60
61
62
63
{
"name": "write-white",
"description": "",
"author": "Giacomo Secchi",
"license": "GPL-2.0-or-later",
"files": [
"assets",
"inc",
"functions.php",
"parts",
"patterns",
"template-parts",
"templates",
"screenshot.png",
"style.css",
"theme.json"
],
"dependencies": {
"@wordpress/api-fetch": "^7.1.0",
"@wordpress/dom-ready": "^4.1.0",
"@wordpress/interactivity": "^6.1.0"
},
"devDependencies": {
"@wordpress/browserslist-config": "^6.1.0",
"@wordpress/env": "^10.8.0",
"@wordpress/scripts": "^28.1.0",
"browserslist": "^4.23.1",
"copy-webpack-plugin": "^12.0.2",
"glob": "^10.4.2",
"path": "^0.12.7",
"webpack-remove-empty-scripts": "^1.0.4"
},
"scripts": {
"build": "wp-scripts build --webpack-src-dir=resources --output-path=assets",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"composer": "wp-env run cli --env-cwd=wp-content/themes/write-white composer",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "wp-scripts start --webpack-src-dir=resources --output-path=assets",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js",
"wp-env": "wp-env"
},
"npmpackagejsonlint": {
"extends": "@wordpress/npm-package-json-lint-config",
"rules": {
"require-keywords": "off",
"require-bugs": "off",
"require-homepage": "off",
"require-repository": "off",
"require-version": "off"
}
},
"browserslist": [
"extends @wordpress/browserslist-config"
]
}