]>
Commit | Line | Data |
---|---|---|
1 | { | |
2 | "name": "api-notation", | |
3 | "displayName": "API Notation", | |
4 | "description": "Syntax Highlighting for API notation", | |
5 | "version": "0.0.1", | |
6 | "engines": { | |
7 | "vscode": "^1.30.0" | |
8 | }, | |
9 | "categories": [ | |
10 | "Programming Languages" | |
11 | ], | |
12 | "contributes": { | |
13 | "languages": [{ | |
14 | "id": "api-notation", | |
15 | "aliases": ["API Notation", "api-notation"], | |
16 | "extensions": [".api"], | |
17 | "configuration": "./language-configuration.json" | |
18 | }], | |
19 | "grammars": [{ | |
20 | "language": "api-notation", | |
21 | "scopeName": "source.api-notation", | |
22 | "path": "./syntaxes/api-notation.tmLanguage" | |
23 | }] | |
24 | } | |
25 | } |