-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.32 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "flexible-spacer-block",
"version": "2.5.0",
"description": "WordPress plugin to add white space between blocks and customize its height for each device.",
"author": "Aki Hamano",
"license": "GPL-2.0-or-later",
"keywords": [
"gutenberg",
"block",
"spacer",
"responsive"
],
"homepage": "https://github.com/t-hamano/flexible-spacer-block",
"repository": "git+https://github.com/t-hamano/flexible-spacer-block.git",
"bugs": {
"url": "https://github.com/t-hamano/flexible-spacer-block/issues"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"volta": {
"node": "20.11.1",
"npm": "10.5.0"
},
"devDependencies": {
"@wordpress/base-styles": "5.10.0",
"@wordpress/env": "^10.10.0",
"@wordpress/icons": "^10.10.0",
"@wordpress/scripts": "^27.9.0",
"clsx": "2.1.1",
"concurrently": "9.0.1",
"husky": "^9.1.6",
"lint-staged": "15.2.10",
"prettier": "npm:[email protected]",
"rimraf": "^6.0.1"
},
"scripts": {
"wp-env": "wp-env",
"stop": "wp-env stop",
"start:js": "wp-scripts start --output-path=build/js",
"start:sass": "sass src/admin-style.scss:build/css/admin-style.css src/editor-style.scss:build/css/editor-style.css --watch",
"start": "concurrently \"npm run start:js\" \"npm run start:sass\"",
"build:js": "wp-scripts build --output-path=build/js",
"build:sass": "sass src/admin-style.scss:build/css/admin-style.css src/editor-style.scss:build/css/editor-style.css --no-source-map --style compressed",
"build": "npm run clean && npm run build:js && npm run build:sass",
"clean": "rimraf build",
"check-licenses": "wp-scripts check-licenses",
"lint": "npm run lint:css && npm run lint:js && npm run lint:php && npm run lint:md-docs && npm run lint:pkg-json",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:php": "composer lint",
"lint:md-docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"format": "wp-scripts format",
"test:e2e": "wp-scripts test-playwright",
"test:e2e:debug": "wp-scripts test-playwright --debug",
"prepare": "husky"
},
"lint-staged": {
"*.{js,json,yml,yaml}": [
"wp-scripts format"
],
"*.js": [
"wp-scripts lint-js"
],
"*.scss": [
"wp-scripts lint-style"
],
"*.md": [
"wp-scripts lint-md-docs"
],
"package.json": [
"wp-scripts lint-pkg-json"
]
}
}