-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.41 KB
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
{
"name": "writepoetry-plugin",
"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",
"writepoetry-plugin.php",
"uninstall.php"
],
"dependencies": {
"@10up/block-components": "^1.21.4",
"@wordpress/api-fetch": "^7.32.0",
"@wordpress/components": "^30.5.0",
"@wordpress/core-data": "^7.32.0",
"@wordpress/data": "^10.32.0",
"@wordpress/date": "^5.32.0",
"@wordpress/edit-post": "^8.32.0",
"@wordpress/i18n": "^6.5.0",
"@wordpress/icons": "^10.32.0",
"@wordpress/plugins": "^7.32.0",
"@writepoetry/webpack-utils": "^1.0.1",
"animate.css": "^4.1.1",
"classnames": "^2.5.1",
"swiper": "^12.0.2"
},
"devDependencies": {
"@wordpress/env": "^10.31.0",
"@wordpress/scripts": "^30.25.0",
"@writepoetry/webpack-utils": "^1.0.3"
},
"prettier": "@wordpress/prettier-config",
"scripts": {
"build": "wp-scripts build --webpack-copy-php",
"build:debug": "node --inspect-brk ./node_modules/.bin/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/writepoetry-plugin composer",
"composer:install": "npm run composer install -- --no-dev --no-interaction --prefer-dist --optimize-autoloader",
"env:start": "wp-env start && npm run composer:install && (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/writepoetry-plugin ./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"
}
},
"engines": {
"node": "22.18.0",
"npm": "10.9.3"
}
}