-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.05 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
{
"name": "wporg-make",
"version": "1.0.0",
"description": "The codebase and development environment for the make.wordpress.org home theme.",
"author": "WordPress.org",
"license": "GPL-2.0-or-later",
"private": true,
"devDependencies": {
"@wordpress/env": "9.7.0",
"@wordpress/scripts": "27.9.0",
"@wordpress/stylelint-config": "21.34.0"
},
"scripts": {
"build": "yarn workspaces run build",
"build:theme": "yarn workspace wporg-make-2024 build",
"lint": "yarn lint:css && yarn lint:js && yarn lint:php",
"lint:css": "yarn workspaces run lint:css",
"lint:js": "yarn workspaces run lint:js",
"lint:php": "composer lint ./source/wp-content/themes/wporg-make-2024",
"setup:tools": "yarn && composer install && TEXTDOMAIN=make-wporg composer exec update-configs",
"setup:wp": "wp-env run cli bash env/setup.sh",
"start:theme": "yarn workspace wporg-make-2024 start",
"update:tools": "composer update && TEXTDOMAIN=make-wporg composer exec update-configs",
"wp-env": "wp-env"
},
"workspaces": [
"source/wp-content/themes/wporg-make-2024"
]
}