-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.25 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
{
"name": "@wp-blocks/vinyl",
"private": true,
"license": "GPL-2.0-or-later",
"description": "An audio player WordPress block.",
"contributors": [
"Erik Golinelli <[email protected]> (https://codekraft.it/)",
"John Hooks <[email protected]> (https://johnhooks.io/)"
],
"homepage": "https://github.com/wp-blocks/vinyl#readme",
"repository": {
"type": "git",
"url": "https://github.com/wp-blocks/vinyl.git"
},
"bugs": {
"url": "https://github.com/wp-blocks/vinyl/issues"
},
"type": "module",
"files": [
"build/*",
"includes/*",
"languages/*",
"vendor/*",
"composer.json",
"composer.lock",
"LICENSE.md",
"README.md",
"readme.txt",
"vinyl.php"
],
"scripts": {
"build": "wp-scripts build --config webpack.config.cjs",
"build:pot": "make-pot . languages",
"build:react": "node ./bin/react/build.js",
"clean": "rm -rf build",
"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",
"start": "wp-scripts start --config webpack.config.cjs",
"start:hot": "wp-scripts start --hot --config webpack.config.cjs",
"prepare": "husky install"
},
"dependencies": {
"@wordpress/icons": "^9.26.3",
"classnames": "^2.5.1",
"media-chrome": "^3.2.1"
},
"devDependencies": {
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/wordpress__block-editor": "^11.5.14",
"@types/wordpress__blocks": "^12.5.14",
"@wordpress/block-editor": "^12.3.15",
"@wordpress/block-library": "^8.12.19",
"@wordpress/blocks": "^12.12.8",
"@wordpress/components": "^25.1.12",
"@wordpress/data": "^9.5.6",
"@wordpress/element": "^5.12.2",
"@wordpress/eslint-plugin": "^17.13.0",
"@wordpress/notices": "^4.3.6",
"@wordpress/prettier-config": "^3.13.0",
"@wordpress/scripts": "^27.7.0",
"@wordpress/stylelint-config": "^21.39.0",
"@wp-blocks/make-pot": "^1.3.2",
"@wp-blocks/tsconfig": "^0.1.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"stylelint": "^14.16.1",
"typescript": "^5.4.5"
}
}