-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathextension.json
73 lines (73 loc) · 1.8 KB
/
extension.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
{
"name": "WikiSearchFront",
"author": "Robis Koopmans",
"version": "3.2.0",
"url": "https://www.wikibase-solutions.com",
"descriptionmsg": "wikisearchfront-desc",
"license-name": "GPL-2.0-or-later",
"type": "parserhook",
"MessagesDirs": {
"WikiSearchFront": [
"i18n"
]
},
"requires": {
"MediaWiki": ">= 1.27.0",
"extensions": {
"WikiSearch": ">= 8.0.0"
}
},
"ResourceModules": {
"ext.WikiSearchFront.module": {
"dependencies": [
"ext.WikiSearchFront.dependecies",
"moment"
],
"scripts": [
"../dist/wikisearchfront.umd.min.js",
"init.js"
],
"messages": [
"search",
"wikisearchfront-date-range-from",
"wikisearchfront-date-range-to",
"wikisearchfront-clear-all-filters",
"wikisearchfront-total-eq",
"wikisearchfront-total-gte",
"wikisearchfront-total-lte",
"wikisearchfront-less",
"wikisearchfront-more",
"wikisearchfront-order",
"wikisearchfront-score",
"wikisearchfront-false",
"wikisearchfront-true",
"wikisearchfront-all",
"wikisearchfront-page",
"wikisearchfront-info"
],
"styles": [
"../dist/wikisearchfront.css"
]
},
"ext.WikiSearchFront.dependecies": {
"scripts": [
"vue.min.js",
"i18n.js"
]
}
},
"AutoloadNamespaces": {
"WikiSearchFront\\": "includes/"
},
"ResourceFileModulePaths": {
"localBasePath": "module",
"remoteExtPath": "WikiSearchFront/module"
},
"AutoloadClasses": {
"WikiSearchFrontHooks": "includes/WikiSearchFrontHooks.php"
},
"Hooks": {
"WikiSearchOnLoadFrontend": "WikiSearchFront\\WikiSearchFrontHooks::onWikiSearchOnLoadFrontend"
},
"manifest_version": 2
}