-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.29 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
81
82
83
{
"name": "@sixach/wp-block-spacer",
"version": "1.2.4",
"private": true,
"description": "Block to add empty vertical space (full-width).",
"keywords": [
"sixa",
"blank",
"divider",
"margin",
"separator"
],
"homepage": "https://github.com/sixach/wp-block-spacer#readme",
"bugs": {
"url": "https://github.com/sixach/wp-block-spacer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sixach/wp-block-spacer.git"
},
"license": "GPL-3.0-or-later",
"author": "sixa AG",
"main": "build/index.js",
"scripts": {
"analyze-bundles": "npm run build -- --webpack-bundle-analyzer",
"build": "wp-scripts build",
"bundle": "sixa-wp-scripts bundle sixa-block-spacer",
"dev": "wp-scripts start",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:css-fix": "wp-scripts lint-style --fix",
"lint:js": "wp-scripts lint-js",
"lint:js-fix": "wp-scripts lint-js --fix",
"lint:php": "composer lint:php",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"lint:wpcs": "composer lint:wpcs",
"lint:wpcs-fix": "composer lint:wpcbf",
"makepot": "composer make-pot",
"packages-update": "wp-scripts packages-update",
"prepare": "husky install",
"prepare-bundle": "npm i && npm run build && composer install --no-dev --optimize-autoloader"
},
"lint-staged": {
"*.{scss,css}": [
"npm run lint:css"
],
"*.{js,ts,tsx}": [
"npm run lint:js",
"npm run format"
],
"*.php": [
"npm run lint:wpcs"
]
},
"dependencies": {
"@sixa/icon-library": "1.3.1",
"@sixa/wp-block-components": "1.14.1",
"@sixa/wp-block-utils": "1.2.0",
"@sixa/wp-react-hooks": "1.14.0",
"@wordpress/block-editor": "9.8.0",
"@wordpress/blocks": "11.17.0",
"@wordpress/components": "19.17.0",
"@wordpress/compose": "5.16.0",
"@wordpress/data": "6.15.0",
"@wordpress/element": "4.16.0",
"@wordpress/hooks": "3.18.0",
"@wordpress/i18n": "4.18.0",
"@wordpress/primitives": "3.16.0",
"classnames": "2.3.2",
"lodash": "4.17.21",
"prop-types": "15.8.1"
},
"devDependencies": {
"@emotion/babel-plugin-jsx-pragmatic": "0.2.0",
"@emotion/babel-preset-css-prop": "11.10.0",
"@emotion/react": "11.10.4",
"@sixa/wp-scripts": "1.0.0",
"@wordpress/scripts": "23.7.2",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "npm:[email protected]"
}
}