-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "uxntal",
"displayName": "Uxntal",
"description": "Uxntal support for Visual Studio Code",
"icon": "images/icon.png",
"version": "0.2.0",
"publisher": "karolbelina",
"repository": {
"url": "https://github.com/karolbelina/uxntal-vscode.git",
"type": "git"
},
"license": "MIT",
"keywords": [
"uxn",
"uxntal"
],
"categories": [
"Programming Languages"
],
"engines": {
"vscode": "^1.59.0"
},
"contributes": {
"languages": [
{
"id": "uxntal",
"aliases": [
"Uxntal",
"uxntal"
],
"extensions": [
".tal"
],
"configuration": "language-configuration.json",
"icon": {
"light": "images/file_icon/light.svg",
"dark": "images/file_icon/dark.svg"
}
}
],
"grammars": [
{
"language": "uxntal",
"scopeName": "source.tal",
"path": "syntaxes/uxntal.tmLanguage.json"
}
]
}
}