-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "byond-dm-language-support",
"displayName": "BYOND DM Language Support",
"description": "Adds support for .dm syntax highlighting.",
"version": "1.0.1",
"publisher": "gbasood",
"repository": {
"type": "github",
"url": "git@github.com:gbasood/vscode-atomic-dreams.git"
},
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Languages"
],
"contributes": {
"languages": [
{
"id": "dm",
"aliases": [
"DM (BYOND Code)",
"dm",
"byond"
],
"extensions": [
".dm",
".dme",
".dmm"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "dm",
"scopeName": "source.dm",
"path": "./syntaxes/dm.tmLanguage.json"
}
]
}
}