-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 2.21 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
78
79
80
{
"name": "flexible-table-block",
"version": "3.4.0",
"description": "The custom block plugin for the WordPress block editor that allows you to create tables with flexible configurations.",
"author": "Aki Hamano",
"license": "GPL-2.0-or-later",
"keywords": [
"gutenberg",
"block",
"table"
],
"homepage": "https://github.com/t-hamano/flexible-table-block",
"repository": "git+https://github.com/t-hamano/flexible-table-block.git",
"bugs": {
"url": "https://github.com/t-hamano/flexible-table-block/issues"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"volta": {
"node": "20.11.1",
"npm": "10.5.0"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@wordpress/icons": "^10.10.0"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/wordpress__block-editor": "^11.5.15",
"@wordpress/env": "^10.10.0",
"@wordpress/eslint-plugin": "21.3.0",
"@wordpress/notices": "5.10.0",
"@wordpress/scripts": "^27.9.0",
"clsx": "2.1.1",
"husky": "^9.1.6",
"lint-staged": "15.2.10",
"prettier": "npm:[email protected]",
"typescript": "^5.6.3"
},
"scripts": {
"wp-env": "wp-env",
"stop": "wp-env stop",
"start": "wp-scripts start",
"build": "wp-scripts build",
"check-licenses": "wp-scripts check-licenses",
"lint": "npm run lint:css && npm run lint:js && npm run lint:types && 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:types": "tsc",
"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": "npm run lint:js && npm run test:e2e && npm run test:unit",
"test:unit": "wp-scripts test-unit-js --config test/unit/jest.config.js",
"test:e2e": "wp-scripts test-playwright",
"test:e2e:debug": "wp-scripts test-playwright --debug",
"prepare": "husky"
},
"lint-staged": {
"*.{js,json,ts,tsx,yml,yaml}": [
"wp-scripts format"
],
"*.{js,ts,tsx}": [
"wp-scripts lint-js"
],
"*.scss": [
"wp-scripts lint-style"
],
"*.md": [
"wp-scripts lint-md-docs"
],
"package.json": [
"wp-scripts lint-pkg-json"
]
}
}