-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.07 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": "piano-block",
"version": "2.6.0",
"description": "WordPress custom block plugin that allows you to play a variety of tones using the piano keyboard.",
"author": "Aki Hamano",
"license": "GPL-2.0-or-later",
"keywords": [
"gutenberg",
"audio",
"music",
"piano"
],
"homepage": "https://github.com/t-hamano/piano-block",
"repository": "git+https://github.com/t-hamano/piano-block.git",
"bugs": {
"url": "https://github.com/t-hamano/piano-block/issues"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"volta": {
"node": "20.11.1",
"npm": "10.5.0"
},
"dependencies": {
"tone": "^15.0.4"
},
"devDependencies": {
"@types/wordpress__block-editor": "^11.5.15",
"@wordpress/base-styles": "5.9.0",
"@wordpress/dom-ready": "4.9.0",
"@wordpress/env": "^10.9.0",
"@wordpress/eslint-plugin": "21.2.0",
"@wordpress/icons": "^10.9.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",
"start:hot": "wp-scripts start --hot",
"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 && npm run test:e2e",
"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"
]
}
}