{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "machete/machete-share-block",
  "version": "0.1.0",
  "title": "Social Share Block",
  "category": "widgets",
  "icon": "share",
  "description": "A social sharing block with toggleable networks, inline SVG icons, and automatic canonical URL detection.",
  "example": {
    "attributes": {
      "facebook": true,
      "x": true,
      "linkedin": true,
      "whatsapp": true,
      "pinterest": true,
      "iconSize": 16,
      "spacing": 8,
      "buttonPadding": 8,
      "fontSize": "medium"
    }
  },
  "supports": {
    "html": false,
    "align": true,
    "spacing": {
      "margin": true,
      "padding": true
    },
    "color": {
      "text": false,
      "background": false,
      "link": false
    },
    "typography": {
      "fontSize": true,
      "__experimentalDefaultControls": {
        "fontSize": true
      }
    }
  },
  "attributes": {
    "facebook": {
      "type": "boolean",
      "default": true
    },
    "x": {
      "type": "boolean",
      "default": true
    },
    "linkedin": {
      "type": "boolean",
      "default": true
    },
    "whatsapp": {
      "type": "boolean",
      "default": true
    },
    "pinterest": {
      "type": "boolean",
      "default": true
    },
    "iconSize": {
      "type": "number",
      "default": 16
    },
    "spacing": {
      "type": "number",
      "default": 8
    },
    "buttonPadding": {
      "type": "number",
      "default": 8
    },
    "fontSize": {
      "type": "string",
      "default": "medium"
    }
  },
  "textdomain": "machete-share-block",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewScript": "file:./view.js",
  "render": "file:./render.php"
}