50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "native-markup",
|
|
"displayName": "Native markup",
|
|
"description": "Syntax highlighting, diagnostics, completion, and hover for Native SDK .native markup views.",
|
|
"version": "0.1.0",
|
|
"publisher": "native-sdk",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "^1.75.0"
|
|
},
|
|
"categories": [
|
|
"Programming Languages"
|
|
],
|
|
"main": "./extension.js",
|
|
"activationEvents": [
|
|
"onLanguage:native-markup"
|
|
],
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "native-markup",
|
|
"aliases": [
|
|
"Native markup"
|
|
],
|
|
"extensions": [
|
|
".native"
|
|
],
|
|
"configuration": "./language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "native-markup",
|
|
"scopeName": "source.native-markup",
|
|
"path": "./syntaxes/native-markup.tmLanguage.json"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"title": "Native markup",
|
|
"properties": {
|
|
"native-markup.serverPath": {
|
|
"type": "string",
|
|
"default": "native",
|
|
"description": "Path to the Native SDK CLI used to start the markup language server (`native markup lsp`). Set an absolute path if the CLI is not on PATH."
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|