51 lines
1 KiB
JSON
51 lines
1 KiB
JSON
{
|
|
"name": "astrolang-extension",
|
|
"displayName": "Astro Lang",
|
|
"icon": "asl.png",
|
|
"version": "1.0.0",
|
|
"description": "The extension for Astro Lang",
|
|
"license": "MIT",
|
|
"author": "Afonya",
|
|
"publisher": "afonya",
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.afonyanet.hu/afonya/AstroLang"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.22.0"
|
|
},
|
|
"activationEvents": [
|
|
"onStartupFinished"
|
|
],
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "astrolang",
|
|
"aliases": [
|
|
"Astro Lang",
|
|
"AstroLang",
|
|
"ASL"
|
|
],
|
|
"extensions": [
|
|
".asl"
|
|
],
|
|
"configuration": "./language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "astrolang",
|
|
"scopeName": "source.astrolang",
|
|
"path": "./astrolang.tmLanguage.json"
|
|
}
|
|
],
|
|
"snippets": [
|
|
{
|
|
"language": "astrolang",
|
|
"path": "./snippets.json"
|
|
}
|
|
]
|
|
}
|
|
}
|