-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
89 lines (89 loc) · 2.28 KB
/
plugin.json
File metadata and controls
89 lines (89 loc) · 2.28 KB
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
{
"id": "nodebb-plugin-thesis-composer-default",
"url": "https://github.com/lamcuongdat/nodebb-plugin-thesis-composer-default",
"library": "library.js",
"languages": "languages",
"defaultLang": "en-GB",
"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"
},
{
"hook": "filter:topic.create",
"method": "addMoreAttr"
},
{
"hook": "filter:topic.edit",
"method": "addMoreAttr"
},
{
"hook":"filter:composer.push",
"method":"onComposerPush"
},
{
"hook": "filter:privileges.list",
"method": "privilegesList"
},
{
"hook": "filter:privileges.groups.list",
"method": "privilegesGroupsList"
},
{
"hook": "filter:privileges.list_human",
"method": "privilegesListHuman"
},
{
"hook": "filter:privileges.groups.list_human",
"method": "privilegesListHuman"
}
],
"less": [
"./static/less/composer.less",
"./static/less/thesis-composer.less",
"./static/less/optionalDataContainer.less",
"./static/less/optionalData.less",
"./static/less/deleteImages.less",
"./static/less/jquery.timepicker.less"
],
"scripts": [
"./static/lib/client.js",
"./node_modules/screenfull/dist/screenfull.js",
"./static/lib/addAttr.js",
"./static/lib/deleteImages.js",
"./static/lib/jquery.timepicker.js"
],
"modules": {
"composer.js": "./static/lib/composer.js",
"moment.js": "./static/lib/moment.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"
}