-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 905 Bytes
/
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
{
"name": "theta-language-support",
"displayName": "Theta Language Support",
"description": "Syntax highlighting for the Theta programming language",
"version": "0.0.2",
"publisher": "alexdovzhanyn",
"repository": {
"type": "git",
"url": "https://github.com/alexdovzhanyn/ThetaLanguageSupport-VSCode.git"
},
"engines": {
"vscode": "^1.83.0"
},
"categories": [
"Programming Languages"
],
"icon": "./icons/theta.png",
"contributes": {
"languages": [{
"id": "theta",
"aliases": ["Theta", "theta"],
"extensions": [".th", ".theta"],
"configuration": "./language-configuration.json",
"icon": {
"light": "./icons/file-icon.png",
"dark": "./icons/file-icon.png"
}
}],
"grammars": [{
"language": "theta",
"scopeName": "source.theta",
"path": "./syntaxes/theta.tmLanguage.json"
}]
}
}