diff options
| author | Ben Beltran <ben@nsovocal.com> | 2019-02-05 22:01:25 +0100 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2019-02-05 22:01:25 +0100 |
| commit | e6c2e653ab8ad7d115d29a407c99aaecb179adb1 (patch) | |
| tree | b9f0bb708df0482c6c665ea318205eb4cacf9ed5 /package.json | |
| parent | 4549164147a331c583651f87d3d0490eb0a0397f (diff) | |
Import from api-notation.tmLanguage
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..1f0bc38 --- /dev/null +++ b/package.json @@ -0,0 +1,25 @@ +{ + "name": "api-notation", + "displayName": "API Notation", + "description": "Syntax Highlighting for API notation", + "version": "0.0.1", + "engines": { + "vscode": "^1.30.0" + }, + "categories": [ + "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" + }] + } +}
\ No newline at end of file |