-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.21 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "vscode-tads3",
"displayName": "TADS 3",
"description": "TADS 3 Language Extension for Visual Studio Code",
"version": "0.0.1",
"icon": "icon.png",
"homepage": "https://github.com/jeffnyman/vscode-tads3",
"bugs": "https://github.com/jeffnyman/vscode-tads3/issues",
"license": "MIT",
"author": "Jeff Nyman",
"publisher": "jeffnyman",
"repository": {
"type": "git",
"url": "https://github.com/jeffnyman/vscode-tads3.git"
},
"engines": {
"vscode": "^1.58.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "tads3",
"aliases": [
"TADS 3",
"tads3"
],
"extensions": [
".t"
],
"configuration": "./language-configuration.json"
},
{
"id": "tads3buildfile",
"aliases": [
"TADS 3 Build File",
"tads3buildfile"
],
"extensions": [
".t3m"
],
"configuration": "./language-configuration.json"
},
{
"id": "tads3libraryfile",
"aliases": [
"TADS 3 Library File",
"tads3libraryfile"
],
"extensions": [
".tl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "tads3",
"scopeName": "source.tads3",
"path": "./syntaxes/tads3.tmLanguage.json"
},
{
"language": "tads3buildfile",
"scopeName": "source.tads3.buildfile",
"path": "./syntaxes/tads3buildfile.tmLanguage.json"
},
{
"language": "tads3libraryfile",
"scopeName": "source.tads3.libraryfile",
"path": "./syntaxes/tads3libraryfile.tmLanguage.json"
}
]
}
}