-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.2 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
{
"version": "1.0.0",
"description": "Enhances the block editor by adding usefully accessible blocks to the block editor.",
"author": "Paul van Impelen <[email protected]>",
"contributors": [
{
"name": "Paul van Impelen",
"email": "[email protected]>",
"function": "Frontend Developer",
"url": "https://themeforest.net/search/paulvanimpelen"
}
],
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build src/blocks/index.js --output-path=build && npx mix build --production",
"start": "wp-scripts start src/blocks/index.js --output-path=build",
"start-assets": "npx mix watch",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses --prod --gpl2",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js",
"make-pot": "wp i18n make-pot . languages/jabp.pot --domain=jabp",
"make-json": "wp i18n make-json . languages"
},
"devDependencies": {
"@vue/compiler-sfc": "^3.4.15",
"@wordpress/eslint-plugin": "^15.1.0",
"@wordpress/prettier-config": "^2.24.0",
"@wordpress/scripts": "^26.12.0",
"fs": "^0.0.1-security",
"laravel-mix": "^6.0.49",
"path": "^0.12.7",
"resolve-url-loader": "^5.0.0",
"vue-loader": "^16.8.3"
},
"dependencies": {
"@wordpress/api-fetch": "^6.47.0",
"@wordpress/block-editor": "^12.9.0",
"@wordpress/blocks": "^12.18.0",
"@wordpress/components": "^25.7.0",
"@wordpress/data": "^9.11.0",
"@wordpress/element": "^5.18.0",
"@wordpress/i18n": "^4.41.0",
"@wordpress/icons": "^9.32.0",
"classnames": "^2.3.2",
"postcss-normalize-url": "^6.0.0"
},
"prettier": "@wordpress/prettier-config"
}