{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "nemtly/advanced-image",
  "version": "1.0.0",
  "title": "Advanced Image",
  "category": "media",
  "icon": "format-image",
  "description": "Display images with advanced styles, shapes, and hover effects.",
  "example": {
    "attributes": {
      "shape": "rounded",
      "hoverEffect": "zoom-in"
    }
  },
  "supports": {
    "html": false,
    "align": [
      "left",
      "center",
      "right"
    ],
    "spacing": {
      "margin": true,
      "padding": true
    }
  },
  "attributes": {
    "mediaId": {
      "type": "number",
      "default": 0
    },
    "mediaUrl": {
      "type": "string",
      "source": "attribute",
      "selector": "img",
      "attribute": "src"
    },
    "mediaAlt": {
      "type": "string",
      "source": "attribute",
      "selector": "img",
      "attribute": "alt",
      "default": ""
    },
    "shape": {
      "type": "string",
      "default": "none"
    },
    "hoverEffect": {
      "type": "string",
      "default": "none"
    },
    "caption": {
      "type": "string",
      "source": "html",
      "selector": "figcaption"
    },
    "captionStyle": {
      "type": "string",
      "default": "bottom"
    },
    "overlayColor": {
      "type": "string"
    },
    "overlayOpacity": {
      "type": "number",
      "default": 0.5
    },
    "width": {
      "type": "string"
    },
    "height": {
      "type": "string"
    },
    "aspectRatio": {
      "type": "string",
      "default": "auto"
    },
    "scale": {
      "type": "string",
      "default": "cover"
    },
    "sizeSlug": {
      "type": "string",
      "default": "full"
    }
  },
  "textdomain": "nemtly-blocks",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css"
}