{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "store-blocks/product-table",
  "title": "Product Table",
  "version": "0.1.0",
  "category": "Woocommerce",
  "icon": "editor-table",
  "description": "A custom Gutenberg plugin that displays WooCommerce products in a responsive, customizable product table block.",
  "attributes": {
    "categoryId": {
      "type": "string",
      "default": ""
    },
    "perPage": {
      "type": "number",
      "default": 10
    },
    "orderBy": {
      "type": "string",
      "default": "date"
    },
    "order": {
      "type": "string",
      "default": "desc"
    },
    "showTableCaption": {
      "type": "boolean",
      "default": false
    },
    "tableCaption": {
      "type": "string",
      "default": "Product Table"
    },
    "captionFontSize": {
      "type": "string",
      "default": "16px"
    },
    "captionColor": {
      "type": "string",
      "default": "#000000"
    },
    "captionSpacing": {
      "type": "string",
      "default": "10px"
    }
  },
  "supports": {
    "html": false
  },
  "textdomain": "store-blocks",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewScript": "file:./view.js"
}