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 / recipe-card / block.json

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

146 lines 3.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "blockenberg/recipe-card",
5 "title": "Recipe Card",
6 "category": "bkbg-blog",
7 "icon": "carrot",
8 "description": "Full-featured recipe card with ingredients, steps, nutrition facts, ratings, and Recipe JSON-LD structured data.",
9 "keywords": [
10 "recipe",
11 "food",
12 "cooking",
13 "ingredients",
14 "steps",
15 "schema"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-recipe-card-editor",
19 "editorStyle": "bkbg-recipe-card-style",
20 "style": "bkbg-recipe-card-style",
21 "viewScript": "bkbg-recipe-card-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true
26 },
27 "attributes": {
28 "recipeName": {
29 "type": "string",
30 "default": "Classic Pancakes"
31 },
32 "description": {
33 "type": "string",
34 "default": "Fluffy, golden pancakes the whole family will love. Ready in 30 minutes."
35 },
36 "imageUrl": {
37 "type": "string",
38 "default": ""
39 },
40 "imageId": {
41 "type": "number",
42 "default": 0
43 },
44 "prepTime": {
45 "type": "string",
46 "default": "10 min"
47 },
48 "cookTime": {
49 "type": "string",
50 "default": "20 min"
51 },
52 "totalTime": {
53 "type": "string",
54 "default": "30 min"
55 },
56 "servings": {
57 "type": "string",
58 "default": "4 servings"
59 },
60 "difficulty": {
61 "type": "string",
62 "default": "Easy"
63 },
64 "cuisine": {
65 "type": "string",
66 "default": "American"
67 },
68 "category": {
69 "type": "string",
70 "default": "Breakfast"
71 },
72 "ingredients": {
73 "type": "string",
74 "default": "1 cup all-purpose flour\n1 tbsp sugar\n1 tsp baking powder\n½ tsp baking soda\n¼ tsp salt\n1 cup buttermilk\n1 egg\n2 tbsp melted butter"
75 },
76 "instructions": {
77 "type": "string",
78 "default": "Mix dry ingredients in a large bowl.\nWhisk wet ingredients separately.\nCombine wet and dry ingredients until just mixed.\nHeat a skillet over medium heat and grease lightly.\nPour ¼ cup batter per pancake and cook until bubbles form.\nFlip and cook 1-2 more minutes until golden."
79 },
80 "calories": {
81 "type": "string",
82 "default": "285"
83 },
84 "protein": {
85 "type": "string",
86 "default": "8g"
87 },
88 "carbs": {
89 "type": "string",
90 "default": "42g"
91 },
92 "fat": {
93 "type": "string",
94 "default": "9g"
95 },
96 "showNutrition": {
97 "type": "boolean",
98 "default": true
99 },
100 "showRating": {
101 "type": "boolean",
102 "default": true
103 },
104 "rating": {
105 "type": "number",
106 "default": 5
107 },
108 "ratingCount": {
109 "type": "string",
110 "default": "24"
111 },
112 "notes": {
113 "type": "string",
114 "default": ""
115 },
116 "accentColor": {
117 "type": "string",
118 "default": "#f59e0b"
119 },
120 "cardBg": {
121 "type": "string",
122 "default": "#ffffff"
123 },
124 "cardRadius": {
125 "type": "number",
126 "default": 16
127 },
128 "cardShadow": {
129 "type": "boolean",
130 "default": true
131 },
132 "schemaEnabled": {
133 "type": "boolean",
134 "default": true
135 },
136 "titleTypo": {
137 "type": "object",
138 "default": {}
139 },
140 "bodyTypo": {
141 "type": "object",
142 "default": {}
143 }
144 }
145 }
146