mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
38 lines
964 B
JSON
38 lines
964 B
JSON
{
|
|
"name": "kennethreitz.bake",
|
|
"displayName": "bake",
|
|
"description": "Hilighting for Bake: a strangely familiar task runner.",
|
|
"version": "0.0.1",
|
|
"engines": {
|
|
"vscode": "^1.38.0"
|
|
},
|
|
"categories": [
|
|
"Programming Languages"
|
|
],
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "bakefile",
|
|
"aliases": [
|
|
"Bakefile",
|
|
"bakefile"
|
|
],
|
|
"extensions": [
|
|
"Bakefile"
|
|
],
|
|
"configuration": "./language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "bakefile",
|
|
"scopeName": "source.bakefile",
|
|
"path": "./syntaxes/Bakefile.syntax.json",
|
|
"embeddedLanguages": {
|
|
"task": "source.shell"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|