-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblock.json
91 lines (91 loc) · 2.22 KB
/
block.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"$schema": "https://json.schemastore.org/block.json",
"apiVersion": 2,
"name": "blocks-for-github/block",
"version": "1.0.0",
"title": "Blocks for GitHub",
"category": "design",
"description": "Display your GitHub content in a variety of useful ways using the WordPress block editor.",
"supports": {
"html": false
},
"attributes": {
"blockType": {
"type": "string",
"default": "repository"
},
"profileName": {
"type": "string",
"default": "Octocat"
},
"repoUrl": {
"type": "string",
"default": "DevinWalker/blocks-for-github"
},
"mediaId": {
"type": "integer",
"default": 0
},
"mediaUrl": {
"type": "string",
"default": ""
},
"customTitle": {
"type": "string",
"default": ""
},
"showTags": {
"type": "boolean",
"default": true
},
"showForks": {
"type": "boolean",
"default": true
},
"showSubscribers": {
"type": "boolean",
"default": true
},
"showOpenIssues": {
"type": "boolean",
"default": true
},
"showLastUpdate": {
"type": "boolean",
"default": true
},
"showBio": {
"type": "boolean",
"default": true
},
"showLocation": {
"type": "boolean",
"default": true
},
"showOrg": {
"type": "boolean",
"default": true
},
"showWebsite": {
"type": "boolean",
"default": true
},
"showTwitter": {
"type": "boolean",
"default": true
},
"preview": {
"type": "boolean",
"default": false
}
},
"example": {
"attributes": {
"preview": true
}
},
"textdomain": "blocks-for-github",
"editorScript": "file:./build/index.js",
"editorStyle": "file:./build/index.css",
"style": "file:./build/style-index.css"
}