mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "bake",
|
|
"displayName": "bake",
|
|
"description": "Hilighting for Bake: a strangely familiar task runner.",
|
|
"version": "0.0.1",
|
|
"publisher": "kennethreitz",
|
|
"repository": "https://github.com/kennethreitz/bake.git",
|
|
"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"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"generator-code": "^1.2.6",
|
|
"vsce": "^1.66.0"
|
|
}
|
|
}
|