{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "create-block/image-gallery",
  "version": "0.1.0",
  "title": "Image Gallery",
  "category": "pixelnest-blocks",
  "icon": "format-gallery",
  "description": "A customizable image gallery block with grid or masonry layouts, adjustable spacing and columns, and an optional lightbox feature for fullscreen viewing.",
  "example": {},
  "supports": {
    "html": false
  },
  "attributes": {
    "images": {
      "type": "array",
      "default": [],
      "items": {
        "type": "object"
      }
    },
    "layout": {
      "type": "string",
      "default": "grid"
    },
    "spacing": {
      "type": "number",
      "default": 10
    },
    "columns": {
      "type": "number",
      "default": 3
    },
    "enableLightbox": {
      "type": "boolean",
      "default": true
    }
  },
  "textdomain": "pixelnest-blocks",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewScript": "file:./view.js"
}