{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "minimal-stripe-button/minimal-stripe-button",
  "version": "1.0.0",
  "title": "Minimal Stripe Button",
  "category": "widgets",
  "icon": "cart",
  "description": "A button to initiate a Stripe payment.",
  "example": {},
  "supports": {
    "color": true,
    "spacing": {
      "padding": true,
      "margin": true,
      "blockGap": true
    },
    "align": [
      "left",
      "right",
      "center"
    ],
    "html": false,
    "typography": {
      "fontSize": true
    },
    "verticalAlignment": true
  },
  "attributes": {
    "label": {
      "type": "string",
      "default": "Pay Now"
    },
    "amount": {
      "type": "number",
      "default": 100
    },
    "currency": {
      "type": "string",
      "default": "USD"
    },
    "email": {
      "type": "string",
      "default": ""
    },
    "product": {
      "type": "string",
      "default": "Product Name"
    },
    "quantity": {
      "type": "number",
      "default": 1
    },
    "success_url": {
      "type": "string",
      "default": "?success"
    },
    "cancelled_url": {
      "type": "string",
      "default": "?cancelled"
    },
    "user_meta": {
      "type": "string",
      "default": ""
    }
  },
  "textdomain": "minimal-stripe-button",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css"
}