PluginProbe ʕ •ᴥ•ʔ
GenerateBlocks / 2.0.0
GenerateBlocks v2.0.0
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 1 year ago includes 1 year ago src 1 year ago jsconfig.json 1 year ago package.json 1 year ago plugin.php 1 year ago readme.txt 1 year ago webpack.config.js 1 year ago
package.json
70 lines
1 {
2 "name": "generateblocks",
3 "version": "2.0.0",
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": "^1.1.39",
22 "@edge22/components": "^1.1.52",
23 "@edge22/styles-builder": "^1.2.68",
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 "@testing-library/jest-dom": "^6.1.4",
47 "@testing-library/react": "^14.0.0",
48 "@wordpress/scripts": "^27.8.0",
49 "copy-webpack-plugin": "^12.0.2",
50 "eslint-import-resolver-custom-alias": "^1.3.2",
51 "eslint-webpack-plugin": "^4.2.0",
52 "grunt": "^1.5.3",
53 "grunt-contrib-clean": "^2.0.1",
54 "grunt-contrib-compress": "^2.0.0",
55 "grunt-contrib-copy": "^1.0.0",
56 "webpack-remove-empty-scripts": "^1.0.4"
57 },
58 "scripts": {
59 "build": "wp-scripts build",
60 "start": "wp-scripts start",
61 "lint:js": "wp-scripts lint-js",
62 "lint:pkg-json": "wp-scripts lint-pkg-json",
63 "package": "grunt package",
64 "action-package": "grunt action-package",
65 "googleFonts": "grunt download-google-fonts",
66 "test:unit": "wp-scripts test-unit-js",
67 "clean": "git checkout -- dist/ && git clean -fd dist/"
68 }
69 }
70