-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·44 lines (44 loc) · 1.09 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
{
"name": "n8-lang-vsce",
"displayName": "N8",
"description": "N8 language and syntax highlighting extension.",
"version": "0.0.1",
"icon": "assets/n8-logo.png",
"publisher": "nthnn",
"repository": "https://github.com/n8lang/n8",
"engines": {
"vscode": "^1.91.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "n8",
"aliases": [
"N8",
"n8"
],
"extensions": [
".n8"
],
"configuration": "language-configuration.json",
"icon": {
"light": "assets/n8-logo.png",
"dark": "assets/n8-logo.png"
}
}
],
"grammars": [
{
"language": "n8",
"scopeName": "source.n8",
"path": "syntaxes/n8.tmLanguage.json"
}
]
},
"dependencies": {
"vsce": "^2.15.0"
}
}