forked from NodeBB/nodebb-plugin-composer-default
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
35 lines (35 loc) · 1.29 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
{
"id": "nodebb-plugin-composer-stupid",
"url": "https://github.com/kidswong999/nodebb-plugin-composer-stupid",
"library": "library.js",
"hooks": [
{ "hook": "static:app.load", "method": "init" },
{ "hook": "filter:config.get", "method": "appendConfig" },
{ "hook": "filter:composer.build", "method": "build" },
{ "hook": "filter:admin.header.build", "method": "addAdminNavigation" },
{ "hook": "filter:meta.getLinkTags", "method": "addPrefetchTags" }
],
"less": [
"./static/less/composer.less"
],
"scripts": [
"./static/lib/client.js",
"./node_modules/screenfull/dist/screenfull.js"
],
"modules": {
"composer.js": "./static/lib/composer.js",
"composer/categoryList.js": "./static/lib/composer/categoryList.js",
"composer/controls.js": "./static/lib/composer/controls.js",
"composer/drafts.js": "./static/lib/composer/drafts.js",
"composer/formatting.js": "./static/lib/composer/formatting.js",
"composer/preview.js": "./static/lib/composer/preview.js",
"composer/resize.js": "./static/lib/composer/resize.js",
"composer/tags.js": "./static/lib/composer/tags.js",
"composer/uploads.js": "./static/lib/composer/uploads.js",
"composer/autocomplete.js": "./static/lib/composer/autocomplete.js"
},
"acpScripts": [
"./static/lib/admin.js"
],
"templates": "static/templates"
}