PluginProbe ʕ •ᴥ•ʔ
GenerateBlocks / 2.2.1
GenerateBlocks v2.2.1
trunk 1.0 1.0.1 1.0.2 1.1.0 1.1.1 1.1.2 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.7.0 1.7.1 1.7.2 1.7.3 1.8.0 1.8.1 1.8.2 1.8.3 1.9.0 1.9.1 2.0.0 2.0.1 2.0.2 2.1.0 2.1.1 2.1.2 2.2.0 2.2.1 2.3.0
generateblocks / package.json
generateblocks Last commit date
assets 1 year ago config 1 year ago dist 6 months ago includes 3 months ago src 6 months ago jsconfig.json 1 year ago package.json 3 months ago plugin.php 3 months ago readme.txt 3 months ago webpack.config.js 1 year ago
package.json
80 lines
1 {
2 "name": "generateblocks",
3 "version": "2.2.1",
4 "private": true,
5 "description": "A small collection of lightweight WordPress blocks that can accomplish nearly anything.",
6 "author": "Tom Usborne",
7 "license": "GPL-2.0-or-later",
8 "keywords": [
9 "WordPress",
10 "editor"
11 ],
12 "homepage": "https://generateblocks.com",
13 "repository": {
14 "type": "git",
15 "url": "git+https://github.com/tomusborne/generateblocks.git"
16 },
17 "bugs": {
18 "url": "https://generateblocks.com/support"
19 },
20 "dependencies": {
21 "@edge22/block-styles": "^2.1.1",
22 "@edge22/components": "^1.2.0",
23 "@edge22/styles-builder": "^1.5.1",
24 "@tanstack/react-query": "^5.62.11",
25 "@wordpress/block-editor": "^12.12.0",
26 "@wordpress/blocks": "^12.21.0",
27 "@wordpress/components": "^25.10.0",
28 "@wordpress/core-data": "^6.21.0",
29 "@wordpress/icons": "^9.35.0",
30 "classnames": "^2.3.1",
31 "clsx": "^2.1.1",
32 "colord": "^2.9.2",
33 "date-fns": "^4.1.0",
34 "dompurify": "^2.4.0",
35 "imagesloaded": "^5.0.0",
36 "lodash": "4.17.21",
37 "react-colorful": "^5.5.1",
38 "react-select": "^5.7.3",
39 "react-use": "^17.5.1",
40 "request": "^2.88.2",
41 "use-debounce": "^7.0.1",
42 "use-local-storage-state": "^16.0.0",
43 "uuid": "^9.0.1"
44 },
45 "devDependencies": {
46 "@playwright/test": "^1.56.1",
47 "@testing-library/jest-dom": "^6.1.4",
48 "@testing-library/react": "^14.0.0",
49 "@wordpress/e2e-test-utils-playwright": "^0.20.0",
50 "@wordpress/env": "^10.35.0",
51 "@wordpress/scripts": "^27.8.0",
52 "copy-webpack-plugin": "^12.0.2",
53 "eslint-import-resolver-custom-alias": "^1.3.2",
54 "eslint-webpack-plugin": "^4.2.0",
55 "grunt": "^1.5.3",
56 "grunt-contrib-clean": "^2.0.1",
57 "grunt-contrib-compress": "^2.0.0",
58 "grunt-contrib-copy": "^1.0.0",
59 "webpack-remove-empty-scripts": "^1.0.4"
60 },
61 "scripts": {
62 "build": "wp-scripts build",
63 "start": "wp-scripts start",
64 "lint:js": "wp-scripts lint-js",
65 "lint:pkg-json": "wp-scripts lint-pkg-json",
66 "package": "grunt package",
67 "action-package": "grunt action-package",
68 "googleFonts": "grunt download-google-fonts",
69 "test:unit": "wp-scripts test-unit-js",
70 "wp-env:start": "wp-env start",
71 "wp-env:stop": "wp-env stop",
72 "wp-env:clean": "wp-env clean",
73 "test:e2e": "playwright test",
74 "test:e2e:67": "WP_ENV_CORE=WordPress/WordPress#6.7 wp-env start && npm run test:e2e",
75 "test:e2e:68": "WP_ENV_CORE=WordPress/WordPress#6.8 wp-env start && npm run test:e2e",
76 "test:e2e:trunk": "WP_ENV_CORE=WordPress/WordPress#master wp-env start && npm run test:e2e",
77 "clean": "git checkout -- dist/ && git clean -fd dist/"
78 }
79 }
80