summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--package.json35
1 files changed, 22 insertions, 13 deletions
diff --git a/package.json b/package.json
index 1f0bc38..6796641 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "api-notation",
"displayName": "API Notation",
"description": "Syntax Highlighting for API notation",
- "version": "0.0.1",
+ "version": "0.1.0",
"engines": {
"vscode": "^1.30.0"
},
@@ -10,16 +10,25 @@
"Programming Languages"
],
"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"
- }]
+ "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"
+ }
+ ]
}
-} \ No newline at end of file
+}