PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / json-formatter / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/json-formatter/block.json

182 lines 4.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/json-formatter",
5 "title": "JSON Formatter",
6 "category": "bkbg-dev",
7 "icon": "editor-code",
8 "description": "Validate, format (pretty-print), and minify JSON with syntax highlighting and one-click copy.",
9 "keywords": [
10 "json",
11 "formatter",
12 "validator",
13 "minify",
14 "prettify",
15 "code",
16 "developer"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-json-formatter-editor",
20 "style": "bkbg-json-formatter-style",
21 "viewScript": "bkbg-json-formatter-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "title": {
33 "type": "string",
34 "default": "JSON Formatter & Validator"
35 },
36 "showTitle": {
37 "type": "boolean",
38 "default": true
39 },
40 "subtitle": {
41 "type": "string",
42 "default": "Paste JSON to validate, format, or minify it instantly."
43 },
44 "showSubtitle": {
45 "type": "boolean",
46 "default": true
47 },
48 "defaultJson": {
49 "type": "string",
50 "default": "{\"name\":\"Blockenberg\",\"version\":1,\"features\":[\"WYSIWYG\",\"rich settings\",\"frontend rendering\"]}"
51 },
52 "indentSize": {
53 "type": "number",
54 "default": 2
55 },
56 "showLineNums": {
57 "type": "boolean",
58 "default": true
59 },
60 "showStats": {
61 "type": "boolean",
62 "default": true
63 },
64 "accentColor": {
65 "type": "string",
66 "default": "#0ea5e9"
67 },
68 "keyColor": {
69 "type": "string",
70 "default": "#0ea5e9"
71 },
72 "stringColor": {
73 "type": "string",
74 "default": "#16a34a"
75 },
76 "numberColor": {
77 "type": "string",
78 "default": "#f59e0b"
79 },
80 "boolNullColor": {
81 "type": "string",
82 "default": "#ec4899"
83 },
84 "punctColor": {
85 "type": "string",
86 "default": "#9ca3af"
87 },
88 "sectionBg": {
89 "type": "string",
90 "default": "#f0f9ff"
91 },
92 "cardBg": {
93 "type": "string",
94 "default": "#ffffff"
95 },
96 "editorBg": {
97 "type": "string",
98 "default": "#1e1e2e"
99 },
100 "editorText": {
101 "type": "string",
102 "default": "#cdd6f4"
103 },
104 "lineNumBg": {
105 "type": "string",
106 "default": "#181825"
107 },
108 "lineNumColor": {
109 "type": "string",
110 "default": "#6c7086"
111 },
112 "errorBg": {
113 "type": "string",
114 "default": "#fee2e2"
115 },
116 "errorColor": {
117 "type": "string",
118 "default": "#dc2626"
119 },
120 "successColor": {
121 "type": "string",
122 "default": "#16a34a"
123 },
124 "titleColor": {
125 "type": "string",
126 "default": "#111827"
127 },
128 "subtitleColor": {
129 "type": "string",
130 "default": "#6b7280"
131 },
132 "cardRadius": {
133 "type": "number",
134 "default": 16
135 },
136 "editorRadius": {
137 "type": "number",
138 "default": 10
139 },
140 "titleSize": {
141 "type": "number",
142 "default": 26
143 },
144 "editorFontSize": {
145 "type": "number",
146 "default": 13
147 },
148 "editorHeight": {
149 "type": "number",
150 "default": 320
151 },
152 "maxWidth": {
153 "type": "number",
154 "default": 800
155 },
156 "paddingTop": {
157 "type": "number",
158 "default": 60
159 },
160 "paddingBottom": {
161 "type": "number",
162 "default": 60
163 },
164 "outputFontSize": {
165 "type": "number",
166 "default": 13
167 },
168 "outputFontWeight": {
169 "type": "number",
170 "default": 400
171 },
172 "outputLineHeight": {
173 "type": "number",
174 "default": 1.6
175 },
176 "titleTypo": {
177 "type": "object",
178 "default": {}
179 }
180 }
181 }
182