-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.62 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.62 KB
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
{
"icon": "assets/icons/magnusopera_logo.png",
"name": "terrabuild",
"displayName": "Terrabuild",
"description": "Syntax highlighting for Terrabuild",
"version": "0.0.48",
"publisher": "MagnusOpera",
"license": "FSL-1.1-Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/magnusopera/vscode-terrabuild.git"
},
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Programming Languages"
],
"extensionKind": [
"workspace"
],
"keywords": [
"devops",
"terrabuild"
],
"contributes": {
"languages": [
{
"id": "terrabuild-lang",
"aliases": ["Terrabuild Lang"],
"configuration": "./language-configuration.json"
},
{
"id": "terrabuild-workspace",
"aliases": ["Terrabuild Workspace"],
"filenames": ["WORKSPACE"],
"configuration": "./language-configuration.json"
},
{
"id": "terrabuild-project",
"aliases": ["Terrabuild Project"],
"filenames": ["PROJECT"],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "terrabuild-lang",
"scopeName": "source.terrabuild.lang",
"path": "./syntaxes/terrabuild-lang.tmLanguage.json"
},
{
"language": "terrabuild-workspace",
"scopeName": "source.terrabuild.workspace",
"path": "./syntaxes/terrabuild-workspace.tmLanguage.json"
},
{
"language": "terrabuild-project",
"scopeName": "source.terrabuild.project",
"path": "./syntaxes/terrabuild-project.tmLanguage.json"
}
]
}
}