-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.72 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
{
"name": "t4-support",
"displayName": "T4 Support",
"description": "Provides syntax highlighting for T4 Text Templates.",
"version": "0.7.0",
"publisher": "zbecknell",
"icon": "assets/icon.png",
"activationEvents": [
"onLanguage:t4"
],
"engines": {
"vscode": "^1.14.0"
},
"categories": [
"Programming Languages"
],
"bugs": {
"url": "https://github.com/zbecknell/t4-support/issues"
},
"homepage": "https://github.com/zbecknell/t4-support/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/zbecknell/t4-support.git"
},
"contributes": {
"languages": [
{
"id": "t4",
"aliases": [
"T4 Text Template",
"t4",
"tt"
],
"extensions": [
".t4",
".tt",
".ttinclude"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "t4",
"scopeName": "source.t4",
"path": "./syntaxes/t4.tmLanguage.json"
}
],
"snippets": [
{
"language": "t4",
"path": "./snippets/t4.json"
}
]
},
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "7.0.4",
"@types/vscode": "^1.14.0",
"typescript": "^4.9.5"
}
}