-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
91 lines (91 loc) · 1.94 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "TableTools",
"version": "3.0.0-alpha",
"author": [
"mw:User:TheDJ",
"[http://www.hallowelt.com Hallo Welt! GmbH]"
],
"url": "https://www.mediawiki.org/wiki/Extension:TableTools",
"descriptionmsg": "tabletools-desc",
"license-name": "GPL-3.0-or-later",
"type": "other",
"requires": {
"MediaWiki": ">= 1.43.0",
"extensions": {
"VisualEditor": "*",
"VueJsPlus": "*"
}
},
"attributes": {
"VisualEditor": {
"PluginModules": [
"ext.tabletools.visualEditor"
]
},
"BlueSpiceVisualEditorConnector": {
"PluginModules": [
"ext.tabletools.visualEditor.tableStyles"
]
}
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\TableTools\\": "src/"
},
"TestAutoloadNamespaces": {
"MediaWiki\\Extension\\TableTools\\Tests\\": "tests/phpunit/"
},
"MessagesDirs": {
"TableTools": [
"i18n"
]
},
"HookHandlers": {
"stickyheader": {
"class": "MediaWiki\\Extension\\TableTools\\HookHandler\\StickyHeader"
},
"add-resources": {
"class": "MediaWiki\\Extension\\TableTools\\HookHandler\\AddResources"
}
},
"Hooks": {
"OutputPageBeforeHTML": "stickyheader",
"BeforePageDisplay": [ "add-resources" ]
},
"ResourceFileModulePaths": {
"localBasePath": "resources",
"remoteExtPath": "TableTools/resources"
},
"ResourceModules": {
"ext.tableTools.stickyHeader": {
"scripts": [
"ext.tableTools.stickyHeader.js"
],
"styles": [
"ext.tableTools.stickyHeader.css"
]
},
"ext.tabletools.visualEditor.tableStyles": {
"scripts": [
"ext.tableTools.visualEditor.tableStyles.js"
],
"messages": [
"tabletools-ve-plugin-table-style-sticky"
]
},
"ext.tabletools.dataTable": {
"class": "MediaWiki\\Extension\\VueJsPlus\\Module\\VueJsPlusModule",
"vueJsPlusComponents": [
"Grid"
],
"packageFiles": [
"ext.tableTools.dataTable.js",
"components/DataTable.vue"
],
"dependencies": [
"vue",
"mediawiki.api"
]
}
},
"manifest_version": 2
}