From a43f374ffed8ab5d64acd122702826c9c41b8954 Mon Sep 17 00:00:00 2001 From: Mel Date: Sun, 18 Dec 2022 01:06:40 +0100 Subject: Add Jinx Lang VSCode Syntax Extension --- meta/jinx-language-syntax/package.json | 46 ++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 meta/jinx-language-syntax/package.json (limited to 'meta/jinx-language-syntax/package.json') diff --git a/meta/jinx-language-syntax/package.json b/meta/jinx-language-syntax/package.json new file mode 100644 index 0000000..560ea9c --- /dev/null +++ b/meta/jinx-language-syntax/package.json @@ -0,0 +1,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 (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" + } +} -- cgit 1.4.1