-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.82 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
64
65
66
67
{
"name": "blankspace",
"description": "",
"author": "Giacomo Secchi",
"license": "GPL-2.0-or-later",
"files": [
"assets",
"inc",
"vendor",
"functions.php",
"parts",
"patterns",
"template-parts",
"templates",
"screenshot.png",
"style.css",
"theme.json"
],
"dependencies": {
"@wordpress/api-fetch": "^7.32.0",
"@wordpress/dom-ready": "^4.32.0"
},
"devDependencies": {
"@wordpress/browserslist-config": "^6.32.0",
"@wordpress/env": "^10.32.0",
"@wordpress/scripts": "^30.25.0",
"@writepoetry/webpack-utils": "^1.0.3",
"browserslist": "^4.26.3",
"copy-webpack-plugin": "^13.0.1",
"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/blankspace 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-env run tests-cli --env-cwd=wp-content/themes/blankspace ./vendor/bin/phpunit",
"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"
],
"engines": {
"node": "22.18.0",
"npm": "10.9.3"
}
}