]> git.r.bdr.sh - rbdr/api-notation.vscode/blobdiff - package.json
Merge branch 'feature/rbdr-initial-development' into develop
[rbdr/api-notation.vscode] / package.json
diff --git a/package.json b/package.json
new file mode 100644 (file)
index 0000000..44e125e
--- /dev/null
@@ -0,0 +1,39 @@
+{
+    "name": "api-notation",
+    "displayName": "API Notation",
+    "description": "Syntax Highlighting for API notation",
+    "publisher": "rbdr",
+    "version": "0.2.1",
+    "engines": {
+        "vscode": "^1.30.0"
+    },
+    "categories": [
+        "Programming Languages"
+    ],
+    "repository": {
+        "type": "git",
+        "url": "https://gitlab.com/rbdr/api-notation.vscode.git"
+    },
+    "contributes": {
+        "languages": [
+            {
+                "id": "api-notation",
+                "aliases": [
+                    "API Notation",
+                    "api-notation"
+                ],
+                "extensions": [
+                    ".api"
+                ],
+                "configuration": "./language-configuration.json"
+            }
+        ],
+        "grammars": [
+            {
+                "language": "api-notation",
+                "scopeName": "source.api-notation",
+                "path": "./syntaxes/api-notation.tmLanguage"
+            }
+        ]
+    }
+}