forked from WordPress/wporg-developer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.1 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-developer",
"version": "1.0.0",
"description": "The codebase and development environment for Developer.WordPress.org.",
"author": "WordPress.org",
"license": "GPL-2.0-or-later",
"private": true,
"dependencies": {
"@wordpress/scripts": "27.1.0"
},
"devDependencies": {
"@wordpress/env": "9.2.0"
},
"scripts": {
"setup:tools": "yarn && composer install && TEXTDOMAIN=wporg composer exec update-configs && composer --working-dir=./source/wp-content/plugins/phpdoc-parser install",
"setup": "yarn setup:wp && yarn parse",
"setup:wp": "wp-env run cli bash env/setup.sh",
"parse": "wp-env run cli wp devhub parse --user_id=1",
"update:tools": "composer update && TEXTDOMAIN=wporg composer exec update-configs && composer --working-dir=./source/wp-content/plugins/phpdoc-parser update",
"wp-env": "wp-env",
"build": "yarn workspaces run build",
"build:theme": "yarn workspace wporg-developer-2023 build",
"start:theme": "yarn workspace wporg-developer-2023 start",
"lint:css": "wp-scripts lint-style"
},
"workspaces": [
"source/wp-content/themes/wporg-developer-2023"
]
}