This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.98 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
{
"name": "write-poetry",
"description": "Example block scaffolded with Create Block tool.",
"author": "Giacomo Secchi",
"license": "GPL-2.0-or-later",
"files": [
"assets",
"build",
"includes",
"vendor",
"woocommerce",
"index.php",
"readme.txt",
"write-poetry.php",
"uninstall.php"
],
"dependencies": {
"@wordpress/api-fetch": "^6.55.0",
"@wordpress/components": "^27.6.0",
"@wordpress/core-data": "^6.35.0",
"@wordpress/data": "^9.28.0",
"@wordpress/date": "^4.58.0",
"@wordpress/edit-post": "^7.35.0",
"@wordpress/i18n": "^4.58.0",
"@wordpress/icons": "^9.49.0",
"@wordpress/plugins": "^6.26.0",
"animate.css": "^4.1.1",
"classnames": "^2.5.1",
"swiper": "^11.1.3"
},
"devDependencies": {
"@wordpress/env": "^9.10.0",
"@wordpress/scripts": "^27.9.0"
},
"prettier": "@wordpress/prettier-config",
"scripts": {
"build": "wp-scripts build --webpack-copy-php",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"composer": "wp-env run cli --env-cwd=wp-content/plugins/write-poetry composer",
"env:start": "wp-env start && (npm run start)",
"env:start:debug": "wp-env start --xdebug",
"env:stop": "wp-env stop",
"format": "wp-scripts format",
"format:src": "wp-scripts format ./src",
"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",
"start": "wp-scripts start --webpack-copy-php",
"start:hot": "wp-scripts start --hot",
"test:unit": "wp-env run tests-cli --env-cwd=wp-content/plugins/write-poetry ./vendor/bin/phpunit",
"wp-env": "wp-env"
},
"npmpackagejsonlint": {
"extends": "@wordpress/npm-package-json-lint-config",
"rules": {
"require-keywords": "off",
"require-bugs": "off",
"require-homepage": "off",
"require-repository": "off",
"require-version": "off"
}
}
}