about summary refs log tree commit diff
path: root/meta/jinx-language-syntax/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'meta/jinx-language-syntax/package.json')
-rw-r--r--meta/jinx-language-syntax/package.json46
1 files changed, 46 insertions, 0 deletions
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 <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"
+  }
+}