-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.59 KB
/
package.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
{
"name": "mts",
"displayName": "MapTool Scripting",
"description": "Support for the MapTool scripting language.",
"version": "0.3.0",
"license": "MIT",
"publisher": "Thomas Due",
"author": {
"name": "Thomas Due",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Tdue21/mtscript-vscode.git"
},
"bugs": {
"url": "https://github.com/Tdue21/mtscript-vscode/issues"
},
"icon": "images/RPTools_Map_Logo_242.png",
"engines": {
"vscode": "^1.48.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "maptool",
"aliases": [
"MapTool Scripting",
"maptool"
],
"extensions": [
".mtsl",
".mts"
],
"configuration": "./src/language-configuration.json"
}
],
"grammars": [
{
"language": "maptool",
"scopeName": "text.maptool.basic",
"path": "./src/syntaxes/maptool.tmLanguage.json",
"embeddedLanguages": {
"text.html":"html",
"text.css":"css"
}
}
],
"themes": [
{
"label": "MapTool",
"uiTheme": "vs-dark",
"path": "./src/themes/maptool.dark.mtTheme.json"
}
]
}
}