forked from NodeBB/nodebb-plugin-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
27 lines (27 loc) · 677 Bytes
/
plugin.json
File metadata and controls
27 lines (27 loc) · 677 Bytes
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
{
"id": "nodebb-plugin-quickstart",
"url": "https://github.com/NodeBB/nodebb-plugin-quickstart",
"library": "./library.js",
"hooks": [
{ "hook": "static:app.load", "method": "init" },
{ "hook": "static:api.routes", "method": "addRoutes" },
{ "hook": "filter:admin.header.build", "method": "addAdminNavigation" }
],
"staticDirs": {
"static": "./static"
},
"scss": [
"static/scss/quickstart.scss"
],
"scripts": [
"static/lib/main.js"
],
"acpScripts": [
"static/lib/acp-main.js"
],
"modules": {
"../client/quickstart.js": "./static/lib/quickstart.js",
"../admin/plugins/quickstart.js": "./static/lib/admin.js"
},
"templates": "static/templates"
}