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 / tic-tac-toe / block.json

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

130 lines 3.1 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/tic-tac-toe",
5 "title": "Tic-Tac-Toe",
6 "category": "bkbg-interactive",
7 "icon": "grid-view",
8 "description": "Playable Tic-Tac-Toe game with AI opponent, score tracking, custom symbols, and multiple difficulty modes.",
9 "keywords": [
10 "tic-tac-toe",
11 "game",
12 "noughts",
13 "crosses",
14 "XO",
15 "interactive",
16 "ai"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-tic-tac-toe-editor",
20 "style": "bkbg-tic-tac-toe-style",
21 "viewScript": "bkbg-tic-tac-toe-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": "Tic-Tac-Toe"
35 },
36 "subtitle": {
37 "type": "string",
38 "default": "Can you beat the AI?"
39 },
40 "showTitle": {
41 "type": "boolean",
42 "default": true
43 },
44 "showSubtitle": {
45 "type": "boolean",
46 "default": true
47 },
48 "showScore": {
49 "type": "boolean",
50 "default": true
51 },
52 "playerSymbol": {
53 "type": "string",
54 "default": "X"
55 },
56 "aiSymbol": {
57 "type": "string",
58 "default": "O"
59 },
60 "defaultMode": {
61 "type": "string",
62 "default": "ai"
63 },
64 "aiDifficulty": {
65 "type": "string",
66 "default": "hard"
67 },
68 "accentColor": {
69 "type": "string",
70 "default": "#6366f1"
71 },
72 "xColor": {
73 "type": "string",
74 "default": "#ef4444"
75 },
76 "oColor": {
77 "type": "string",
78 "default": "#3b82f6"
79 },
80 "cellBg": {
81 "type": "string",
82 "default": "#ffffff"
83 },
84 "cellHover": {
85 "type": "string",
86 "default": "#f5f3ff"
87 },
88 "winLineBg": {
89 "type": "string",
90 "default": "#22c55e"
91 },
92 "gridLine": {
93 "type": "string",
94 "default": "#d1d5db"
95 },
96 "sectionBg": {
97 "type": "string",
98 "default": "#eef2ff"
99 },
100 "cardBg": {
101 "type": "string",
102 "default": "#ffffff"
103 },
104 "titleColor": {
105 "type": "string",
106 "default": "#312e81"
107 },
108 "subtitleColor": {
109 "type": "string",
110 "default": "#6b7280"
111 },
112 "labelColor": {
113 "type": "string",
114 "default": "#374151"
115 },
116 "titleTypo": {
117 "type": "object",
118 "default": {}
119 },
120 "subtitleTypo": {
121 "type": "object",
122 "default": {}
123 },
124 "contentMaxWidth": {
125 "type": "number",
126 "default": 480
127 }
128 }
129 }
130