-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.07 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
{
"name": "ipsum",
"private": true,
"engines": {
"node": ">=24.18.0",
"npm": ">=11.16.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=24.18.0"
},
"packageManager": {
"name": "npm",
"version": ">=11.16.0",
"onFail": "error"
}
},
"scripts": {
"wp-env": "wp-env",
"env:setup": "wp-env start && wp-env run cli wp theme activate ipsum && wp-env run cli wp plugin install gutenberg theme-check --activate",
"env:start": "wp-env start",
"env:status": "wp-env status",
"env:stop": "wp-env stop",
"env:reset": "wp-env reset",
"lint": "npm run lint:css && npm run lint:php && npm run lint:theme",
"lint:css": "stylelint \"**/*.css\"",
"lint:php": "composer run lint",
"lint:php:fix": "composer run format",
"lint:theme": "node bin/validate-theme.mjs",
"prepare": "husky"
},
"devDependencies": {
"@wordpress/env": "^11.15.0",
"@wordpress/stylelint-config": "^25.0.0",
"ajv": "^8.20.0",
"husky": "^9.1.7",
"lint-staged": "^17.5.1",
"stylelint": "^17.15.0"
},
"allowScripts": {
"fs-ext-extra-prebuilt": false
}
}