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