{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "bpsc/snippet-copy-section",
  "version": "0.1.0",
  "title": "Snippet Copy section",
  "category": "bPlugins",
  "icon": "editor-code",
  "description": "Display code and text snippets with one-click copy to clipboard. Features multiple snippets, dark/light themes, line numbers, and polished UX.",
  "example": {
    "attributes": {
      "sectionTitle": "Quick Start",
      "sectionDescription": "Copy these snippets to get started.",
      "theme": "dark",
      "snippets": [
        {
          "id": "example-1",
          "title": "Install Dependencies",
          "language": "bash",
          "content": "npm install @wordpress/scripts"
        }
      ]
    }
  },
  "supports": {
    "html": false,
    "anchor": true,
    "align": [
      "wide",
      "full"
    ],
    "spacing": {
      "margin": true,
      "padding": true
    }
  },
  "attributes": {
    "align": {
      "type": "string",
      "default": "full"
    },
    "sectionTitle": {
      "type": "string",
      "default": ""
    },
    "sectionDescription": {
      "type": "string",
      "default": ""
    },
    "sectionAlignment": {
      "type": "string",
      "default": "left",
      "enum": [
        "left",
        "center",
        "right"
      ]
    },
    "snippetMaxWidth": {
      "type": "string",
      "default": "70%"
    },
    "snippetGap": {
      "type": "string",
      "default": "1rem"
    },
    "theme": {
      "type": "string",
      "default": "auto",
      "enum": [
        "dark",
        "light",
        "auto"
      ]
    },
    "buttonStyle": {
      "type": "string",
      "default": "rounded",
      "enum": [
        "rounded",
        "square",
        "minimal"
      ]
    },
    "fontSize": {
      "type": "number",
      "default": 14
    },
    "showLineNumbers": {
      "type": "boolean",
      "default": true
    },
    "showTrafficLights": {
      "type": "boolean",
      "default": true
    },
    "snippets": {
      "type": "array",
      "default": [
        {
          "id": "snippet-1",
          "title": "",
          "language": "",
          "content": ""
        }
      ]
    }
  },
  "textdomain": "section-collection",
  "editorScript": "file:../index.js",
  "style": "file:./view.css",
  "viewScript": "file:./view.js",
  "render": "file:./render.php"
}