{
  "apiVersion": 3,
  "name": "brandy/qr-code",
  "title": "QR Code",
  "category": "brandy-blocks",
  "description": "Display a scannable QR code for any URL or text.",
  "keywords": [
    "qr",
    "qrcode",
    "barcode",
    "url"
  ],
  "attributes": {
    "content": {
      "type": "string",
      "default": ""
    },
    "contentType": {
      "type": "string",
      "default": "url",
      "enum": [
        "url",
        "text"
      ]
    },
    "size": {
      "type": "number",
      "default": 200
    },
    "fgColor": {
      "type": "string",
      "default": "#000000"
    },
    "bgColor": {
      "type": "string",
      "default": "#ffffff"
    },
    "quietZone": {
      "type": "number",
      "default": 1
    },
    "caption": {
      "type": "string",
      "default": ""
    },
    "showDownload": {
      "type": "boolean",
      "default": false
    }
  },
  "example": {
    "attributes": {
      "content": "https://example.com",
      "contentType": "url"
    }
  },
  "supports": {
    "align": [
      "center",
      "wide",
      "full"
    ],
    "spacing": {
      "margin": true
    }
  },
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewScript": "file:./view.js"
}