aboutsummaryrefslogtreecommitdiffstats
path: root/atk16-syntax/package.json
blob: bdfbb74ab073b1c11c913d41377eed82ffa4d696 (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": "atk16-syntax",
  "displayName": "ATK16 Syntax",
  "description": "Syntax highlighting and support for ATK16 assembly language",
  "version": "0.0.1",
  "publisher": "JanTuomi",
  "engines": {
    "vscode": "^1.60.0"
  },
  "categories": ["Programming Languages"],
  "activationEvents": [
    "onLanguage:atk16"
  ],
  "main": "./extension.js",
  "contributes": {
    "languages": [
      {
        "id": "atk16",
        "aliases": ["ATK16 Assembly", "atk16"],
        "extensions": [".atk16"],
        "configuration": "./language-configuration.json"
      }
    ],
    "grammars": [
      {
        "language": "atk16",
        "scopeName": "source.atk16",
        "path": "./syntaxes/atk16.tmLanguage.json"
      }
    ],
    "themes": [
      {
        "label": "ATK16 Color Theme",
        "uiTheme": "vs-dark",
        "path": "./themes/atk16-color-theme.json"
      }
    ]
  }
}