{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "b-blocks/camelplug-audio-player",
  "version": "1.0.0",
  "title": "CamelPlug Audio Player Block",
  "category": "widgets",
  "description": "Add an audio player block with optional download button.",
  "keywords": [
    "audio",
    "player",
    "download",
    "media",
    "audio-player"
  ],
  "textdomain": "camelplug-audio-player",
  "attributes": {
    "alignment": {
      "type": "string",
      "default": "center"
    },
    "audioUrl": {
      "type": "string",
      "default": ""
    },
    "audioTitle": {
      "type": "string",
      "default": ""
    },
    "downloadFilename": {
      "type": "string",
      "default": "audio"
    },
    "showDownloadButton": {
      "type": "boolean",
      "default": true
    },
    "autoPlay": {
      "type": "boolean",
      "default": false
    },
    "loop": {
      "type": "boolean",
      "default": false
    },
    "muted": {
      "type": "boolean",
      "default": false
    },
    "preload": {
      "type": "string",
      "default": "metadata"
    },
    "layout": {
      "type": "string",
      "default": "stacked"
    },
    "showJumpControls": {
      "type": "boolean",
      "default": false
    },
    "showSkipControls": {
      "type": "boolean",
      "default": false
    },
    "colors": {
      "type": "object",
      "default": {
        "text": "#1f2937",
        "background": "#ffffff",
        "accent": "#1f6feb",
        "playButtonBackground": "#1f6feb",
        "playButtonIcon": "#ffffff",
        "progressBackground": "#e5e7eb",
        "downloadButtonBackground": "#ffffff",
        "downloadButtonText": "#1f2937"
      }
    },
    "padding": {
      "type": "object",
      "default": {
        "top": "12px",
        "right": "14px",
        "bottom": "12px",
        "left": "14px"
      }
    },
    "margin": {
      "type": "object",
      "default": {
        "top": "0px",
        "right": "0px",
        "bottom": "0px",
        "left": "0px"
      }
    },
    "borderRadius": {
      "type": "number",
      "default": 12
    },
    "borderWidth": {
      "type": "number",
      "default": 1
    },
    "borderColor": {
      "type": "string",
      "default": "#e5e7eb"
    },
    "maxWidth": {
      "type": "number",
      "default": 100
    },
    "boxShadow": {
      "type": "boolean",
      "default": true
    }
  },
  "supports": {
    "align": [
      "wide",
      "full"
    ],
    "html": false
  },
  "example": {
    "attributes": {}
  },
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./view.css",
  "render": "file:./render.php",
  "viewScript": "file:./view.js"
}