-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.91 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
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
{
"name": "wp-block-theme-scaffold",
"version": "0.0.0",
"description": "A WordPress block theme scaffold with modern sensibilities",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "npm run clean && wp-scripts start --webpack-copy-php --experimental-modules",
"build": "wp-scripts build --webpack-copy-php --experimental-modules",
"build:makepot": "make-pot . ./languages --exclude='src/**,languages/**,**/node_modules/**'",
"clean": "rm -rf ./build",
"version": "node ./scripts/version.js && git add --all",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip --webpack-copy-php --experimental-modules",
"env": "wp-env",
"env:setup": "wp-env start --xdebug && wp-env run cli wp theme activate wp-block-theme-scaffold",
"env:start": "wp-env start --xdebug",
"env:stop": "wp-env stop",
"env:destroy": "wp-env destroy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cr0ybot/wp-block-theme-scaffold.git"
},
"keywords": [
"wordpress"
],
"author": {
"name": "Cory Hughart",
"email": "[email protected]",
"url": "https://coryhughart.com"
},
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/cr0ybot/wp-block-theme-scaffold/issues"
},
"homepage": "https://github.com/cr0ybot/wp-block-theme-scaffold#readme",
"devDependencies": {
"@wordpress/env": "^10.13.0",
"@wordpress/scripts": "^30.6.0",
"@wp-blocks/make-pot": "^1.4.0",
"glob-import-loader": "^1.2.0",
"replace-in-file": "^8.2.0",
"sanitize.css": "^13.0.0",
"stylelint-order": "^6.0.4",
"webpack-remove-empty-scripts": "^1.0.4"
},
"dependencies": {
"@wordpress/icons": "^10.13.0",
"@wordpress/interactivity": "^6.13.0",
"clsx": "^2.1.1"
}
}