]>
Commit | Line | Data |
---|---|---|
1 | { | |
2 | "name": "api-notation", | |
3 | "displayName": "API Notation", | |
4 | "description": "Syntax Highlighting for API notation", | |
5 | "publisher": "rbdr", | |
6 | "version": "1.0.0", | |
7 | "engines": { | |
8 | "vscode": "^1.30.0" | |
9 | }, | |
10 | "categories": [ | |
11 | "Programming Languages" | |
12 | ], | |
13 | "repository": { | |
14 | "type": "git", | |
15 | "url": "https://gitlab.com/rbdr/api-notation.vscode.git" | |
16 | }, | |
17 | "contributes": { | |
18 | "languages": [ | |
19 | { | |
20 | "id": "api-notation", | |
21 | "aliases": [ | |
22 | "API Notation", | |
23 | "api-notation" | |
24 | ], | |
25 | "extensions": [ | |
26 | ".api" | |
27 | ], | |
28 | "configuration": "./language-configuration.json" | |
29 | } | |
30 | ], | |
31 | "grammars": [ | |
32 | { | |
33 | "language": "api-notation", | |
34 | "scopeName": "source.api-notation", | |
35 | "path": "./syntaxes/api-notation.tmLanguage" | |
36 | } | |
37 | ] | |
38 | } | |
39 | } |