{
    "$schema": "https://schemas.wp.org/trunk/block.json",
    "apiVersion": 3,
    "name": "buddypress/birthday-block-for-buddypress",
    "version": "1.0.0",
    "title": "Birthday Block for BuddyPress",
    "category": "buddypress",
    "icon": "buddicons-community",
    "description": "Display upcoming birthdays of your community members in one place.",
    "supports": {
        "html": false
    },
    "textdomain": "birthday-block-for-buddypress",
    "editorScript": "file:./index.js",
    "editorStyle": "file:./index.css",
    "style": "file:./style-index.css",
    "render": "file:./render.php",
    "attributes": {
        "title": {
            "type": "string",
            "default": "Upcoming Birthdays"
        },
        "displayAge": {
            "type": "boolean",
            "default": true
        },
        "sendMessage": {
            "type": "boolean",
            "default": true
        },
        "dateFormat": {
            "type": "string",
            "default": "F d"
        },
        "rangeLimit": {
            "type": "string",
            "default": "upcoming"
        },
        "birthdaysOf": {
            "type": "string",
            "default": "all"
        },
        "nameType": {
            "type": "string",
            "default": "display_name"
        },
        "limit": {
            "type": "number",
            "default": 5
        },
        "emoji": {
            "type": "boolean",
            "default": true
        }
    }
}