{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "primekit-blocks/copyright",
  "version": "1.0.0",
  "title": "Copyright",
  "category": "text",
  "icon": "atSymbol",
  "description": "Copyright text with year, customizable tag, and styling.",
  "keywords": [
    "prime",
    "copyright",
    "copy"
  ],
  "supports": {
    "html": true,
    "align": true,
    "customClassName": true,
    "typography": {
      "fontSize": true,
      "lineHeight": true,
      "fontWeight": true,
      "fontFamilies": [
        {
          "fontFamily": "sans-serif",
          "name": "Sans Serif",
          "slug": "sans-serif"
        },
        {
          "fontFamily": "serif",
          "name": "Serif",
          "slug": "serif"
        }
      ]
    }
  },
  "attributes": {
    "beforeText": {
      "type": "string",
      "default": "Copyright"
    },
    "copyrightYear": {
      "type": "boolean",
      "default": true
    },
    "yearFormat": {
      "type": "string",
      "default": "Y"
    },
    "afterText": {
      "type": "string",
      "default": "All rights reserved."
    },
    "htmlTag": {
      "type": "string",
      "default": "p"
    },
    "textColor": {
      "type": "string",
      "default": "#222"
    },
    "alignment": {
      "type": "string",
      "default": "center"
    },
    "padding": {
      "type": "object",
      "default": {}
    },
    "margin": {
      "type": "object",
      "default": {}
    },
    "typography": {
      "type": "object",
      "default": {}
    },
    "backgroundColor": {
      "type": "string",
      "default": "#ffffff"
    }
  },
  "editorScript": "file:./index.js",
  "editorStyle": "file:./editor.css",
  "style": "file:./index.css"
}