-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 944 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
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "e15-syntax-highlighter",
"displayName": "E15 Syntax Highlighter",
"description": "Syntax highlighter for NYU's pedagogical ISA, E15",
"version": "1.0.0",
"author": {
"name": "Rishyak",
"email": "hello@rishyak.com"
},
"repository": {
"type": "git",
"url": "https://github.com/rishyak/extention15"
},
"main": "src/extension",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "e15",
"aliases": [
"E15",
"e15"
],
"extensions": [
".v",
".e15"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "e15",
"scopeName": "source.e15",
"path": "./syntaxes/e15.tmLanguage.json"
}
]
},
"devDependencies": {
"js-yaml": "^4.1.0"
}
}