]>
Commit | Line | Data |
---|---|---|
e6c2e653 BB |
1 | { |
2 | "name": "api-notation", | |
3 | "displayName": "API Notation", | |
4 | "description": "Syntax Highlighting for API notation", | |
bb6c1bf1 | 5 | "publisher": "rbdr", |
a9d15729 | 6 | "version": "0.2.1", |
e6c2e653 BB |
7 | "engines": { |
8 | "vscode": "^1.30.0" | |
9 | }, | |
10 | "categories": [ | |
11 | "Programming Languages" | |
12 | ], | |
a25a3a2c | 13 | "repository": { |
a9d15729 BB |
14 | "type": "git", |
15 | "url": "https://gitlab.com/rbdr/api-notation.vscode.git" | |
a25a3a2c | 16 | }, |
e6c2e653 | 17 | "contributes": { |
50266a18 BB |
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 | ] | |
e6c2e653 | 38 | } |
50266a18 | 39 | } |