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
|
{
"name": "jinx-language-syntax",
"displayName": "Jinx Language Syntax",
"description": "Syntax highlighting for the programming language used in Jinx.",
"version": "0.0.1",
"author": "Mel <hi@mel.gg> (https://mel.gg/)",
"repository": {
"type": "git",
"url": "https://github.com/Melonai/jinx.git"
},
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Programming Languages"
],
"scripts": {
"build": "./node_modules/@vscode/vsce/vsce package"
},
"contributes": {
"languages": [
{
"id": "jinx-lang",
"aliases": [
"Jinx Lang",
"jinx-lang"
],
"extensions": [
".lang",
".jl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "jinx-lang",
"scopeName": "source.jl",
"path": "./syntaxes/jinx-lang.tmLanguage.json"
}
]
},
"dependencies": {
"@vscode/vsce": "^2.15.0"
}
}
|