-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathplugin.json
52 lines (52 loc) · 3.16 KB
/
plugin.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
{
"id": "nodebb-plugin-minecraft-integration",
"name": "Minecraft Integration",
"description": "NodeBB plugin to integrate your forum with your Minecraft Server using widgets, user syncing, group/rank syncing, sso, bukkit/bungeecord/sponge communication, and more.",
"url": "https://github.com/yariplus/nodebb-plugin-minecraft-integration",
"library": "library.js",
"less": [
"public/less/style.less"
],
"scripts": [
"public/js/client.js"
],
"acpScripts": [
"public/js/acp.js",
"public/js/acp-widgets.js"
],
"hooks": [
{ "hook": "static:app.load", "method": "load" },
{ "hook": "action:nodebb.ready", "method": "onNodeBBReady" },
{ "hook": "filter:widgets.getWidgets", "method": "Hooks.filter.widgets.getWidgets" },
{ "hook": "filter:admin.header.build", "method": "Hooks.filter.admin.header.build" },
{ "hook": "filter:user.profileLinks", "method": "Hooks.filter.user.profileLinks" },
{ "hook": "filter:widget.render:mi-chat", "method": "Widgets.renderChat" },
{ "hook": "filter:widget.render:mi-directory", "method": "Widgets.renderDirectory" },
{ "hook": "filter:widget.render:mi-gallery", "method": "Widgets.renderGallery" },
{ "hook": "filter:widget.render:mi-map", "method": "Widgets.renderMap" },
{ "hook": "filter:widget.render:mi-ping-graph", "method": "Widgets.renderPingGraph" },
{ "hook": "filter:widget.render:mi-players-graph", "method": "Widgets.renderPlayersGraph" },
{ "hook": "filter:widget.render:mi-players-grid", "method": "Widgets.renderPlayersGrid" },
{ "hook": "filter:widget.render:mi-status", "method": "Widgets.renderStatus" },
{ "hook": "filter:widget.render:mi-top-graph", "method": "Widgets.renderTopGraph" },
{ "hook": "filter:widget.render:mi-top-list", "method": "Widgets.renderTopList" },
{ "hook": "filter:widget.render:mi-scoreboard-list", "method": "Widgets.renderScoreboardList" },
{ "hook": "filter:widget.render:mi-tps-graph", "method": "Widgets.renderTPSGraph" },
{ "hook": "filter:widget.render:mi-vote-list", "method": "Widgets.renderVoteList" },
{ "hook": "filter:topic.build", "method": "Hooks.filter.topic.build" },
{ "hook": "filter:post.getPosts", "method": "Hooks.filter.post.getPosts" },
{ "hook": "filter:post.get", "method": "Hooks.filter.post.get" },
{ "hook": "filter:user.account", "method": "Hooks.filter.user.account" },
{ "hook": "filter:config.get", "method": "Hooks.filter.config.get" },
{ "hook": "filter:group.update", "method": "Hooks.filter.group.update" },
{ "hook": "action:group.destroy", "method": "Hooks.action.group.destroy" },
{ "hook": "filter:middleware.renderHeader", "method": "Hooks.filter.middleware.renderHeader" }
],
"templates": "public/templates",
"staticDirs": {
"vendor": "public/vendor",
"js": "public/js"
},
"languages": "public/language",
"defaultLang": "en_US"
}