mirror of
https://github.com/Zenithsiz/zbuild.git
synced 2026-02-03 14:10:02 +00:00
40 lines
680 B
JSON
40 lines
680 B
JSON
{
|
|
"name": "zbuild",
|
|
"displayName": "Zbuild",
|
|
"description": "Syntax highlighting for zbuild files",
|
|
"version": "0.1.0",
|
|
"publisher": "zenithsiz",
|
|
"engines": {
|
|
"vscode": "^1.96.4"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/zenithsiz/zbuild"
|
|
},
|
|
"categories": [
|
|
"Programming Languages"
|
|
],
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "zbuild",
|
|
"aliases": [
|
|
"Zbuild",
|
|
"zbuild"
|
|
],
|
|
"extensions": [
|
|
".zb"
|
|
],
|
|
"configuration": "./language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "zbuild",
|
|
"scopeName": "source.zbuild",
|
|
"path": "./syntaxes/zbuild.tmLanguage.json"
|
|
}
|
|
]
|
|
}
|
|
}
|