{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "name": "activitypub/following",
  "apiVersion": 3,
  "version": "8.2.0",
  "title": "Fediverse Following",
  "category": "widgets",
  "description": "Display the accounts you follow in the Fediverse on your website.",
  "textdomain": "activitypub",
  "icon": "groups",
  "keywords": [
    "fediverse",
    "activitypub",
    "following",
    "mastodon"
  ],
  "supports": {
    "html": false,
    "interactivity": true
  },
  "attributes": {
    "selectedUser": {
      "type": "string",
      "default": "blog"
    },
    "per_page": {
      "type": "number",
      "default": 10
    },
    "order": {
      "type": "string",
      "default": "desc",
      "enum": [
        "asc",
        "desc"
      ]
    }
  },
  "usesContext": [
    "postType",
    "postId"
  ],
  "styles": [
    {
      "name": "default",
      "label": "Default",
      "isDefault": true
    },
    {
      "name": "card",
      "label": "Card"
    },
    {
      "name": "compact",
      "label": "Compact"
    }
  ],
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "viewScriptModule": "file:./view.js",
  "viewScript": "wp-api-fetch",
  "style": [
    "file:./style-index.css"
  ],
  "render": "file:./render.php"
}