{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "juzeddev/simple-video-preview",
  "version": "1.0.2",
  "textdomain": "simple-video-preview",
  "title": "Simple Video Preview",
  "description": "A Gutenberg block to display video previews from various online services with a play button.",
  "category": "media",
  "icon": "format-video",
  "attributes": {
    "videoUrl": {
      "type": "string"
    },
    "videoThumbnails": {
      "type": "object"
    },
    "videoTitle": {
      "type": "string"
    },
    "credit": {
      "type": "string"
    },
    "hasCreditOverlap": {
      "type": "boolean"
    },
    "hasCaption": {
      "type": "boolean"
    }
  },
  "supports": {
    "html": true,
    "customClassName": true,
    "className": true,
    "align": true,
    "anchor": true,
    "inserter": true,
    "color": {
      "text": true,
      "background": true
    },
    "alignWide": true,
    "spacing": {
      "padding": true
    },
    "typography": {
      "fontSize": true,
      "textAlign": true
    }
  },
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "example": {
    "attributes": {
      "videoUrl": "https://www.youtube.com/watch?v=FcTLMTyD2DU",
      "videoTitle": "My Video",
      "credit": "Example Credit",
      "hasCreditOverlap": false,
      "hasCaption": false
    }
  }
}
