forked from bovine/vscode-tcl
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 839 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 839 Bytes
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
{
"name": "tcl",
"displayName": "Tcl",
"description": "Tcl language support",
"version": "0.2.0",
"publisher": "sleutho",
"icon": "images/Tcl-powered.svg",
"engines": {
"vscode": "^0.10.1"
},
"repository": {
"type": "git",
"url": "https://github.com/sleutho/tcl.git"
},
"categories": [
"Languages"
],
"contributes": {
"languages": [
{
"id": "tcl",
"aliases": [
"Tcl",
"tcl"
],
"extensions": [
".tcl"
],
"configuration": "./tcl.configuration.json"
}
],
"grammars": [
{
"language": "tcl",
"scopeName": "source.tcl",
"path": "./syntaxes/tcl.tmLanguage"
}
],
"snippets": [
{
"language": "tcl",
"path": "./snippets/tcl.json"
}
]
}
}