-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "jack-language-syntax-highlighting",
"displayName": "Nand2Tetris - Jack Language Syntax Highlighting",
"description": "Highlighting for the Jack language used in Nand2Tetris course. Syntax highlighting rules were inspired by this Sublime package: https://github.com/swarn/sublime-jack",
"version": "0.0.2",
"publisher": "amadeann",
"repository": {
"type": "git",
"url": "https://github.com/amadeann/nand2tetris-jack-syntax-vscode"
},
"engines": {
"vscode": "^1.16.0"
},
"categories": [
"Languages"
],
"contributes": {
"languages": [
{
"id": "jack",
"aliases": [
"Jack",
"jack"
],
"extensions": [
".jack"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "jack",
"scopeName": "source.jack",
"path": "./syntaxes/jack.tmLanguage.json"
}
]
}
}