aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 2319e61b2b814f4e05172fd46bc3072b75d3d201 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
    "name": "api-notation",
    "displayName": "API Notation",
    "description": "Syntax Highlighting for API notation",
    "publisher": "rbdr",
    "version": "1.0.0",
    "engines": {
        "vscode": "^1.30.0"
    },
    "categories": [
        "Programming Languages"
    ],
    "repository": {
        "type": "git",
        "url": "https://gitlab.com/rbdr/api-notation.vscode.git"
    },
    "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"
            }
        ]
    }
}