summaryrefslogtreecommitdiff
path: root/tools/support/package.json
blob: c28b691b3644edac12d6bdfc56986eec421172fb (plain) (blame)
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
{
  "name": "typst",
  "displayName": "Typst",
  "description": "Typst Language Support.",
  "version": "0.0.1",
  "engines": {
    "vscode": "^1.53.0"
  },
  "categories": [
    "Programming Languages"
  ],
  "contributes": {
    "languages": [
      {
        "id": "typst",
        "aliases": ["Typst", "typst"],
        "extensions": [".typ"],
        "configuration": "./config.json"
      }
    ],
    "grammars": [
      {
        "language": "typst",
        "scopeName": "source.typst",
        "path": "./typst.tmLanguage.json"
      }
    ]
  }
}