mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
30 lines
558 B
JSON
30 lines
558 B
JSON
{
|
|
"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"
|
|
}
|
|
]
|
|
}
|
|
}
|