代码拉取完成,页面将自动刷新
{
"name": "elasticdeveloper",
"displayName": "Elasticsearch Developer tool",
"description": "Has autocomplete support and other features",
"version": "1.2.14",
"license": "MIT",
"preview": false,
"publisher": "crasnam",
"engines": {
"vscode": "^1.30.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Crasnam/vscode-elasticdeveloper.git"
},
"bugs": {
"url": "https://github.com/Crasnam/vscode-elasticdeveloper/issues"
},
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"Elasticsearch",
"Elasticsearch dev tools"
],
"activationEvents": [
"onLanguage:esquery",
"onLanguage:esenv",
"onLanguage:esind"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"title": "Elasticsearch Developer tool",
"properties": {
"elasticdeveloper.intelliSense.openEndpointDocumentation.enabled": {
"type": "boolean",
"default": "true",
"description": "Enable Code lens 'open endpoint documentation'"
},
"elasticdeveloper.intelliSense.enabled": {
"type": "boolean",
"default": "true",
"description": "Enable intelliSense support"
}
}
},
"commands": [
{
"command": "elasticdeveloper.query.runAll",
"title": "Run all queries"
},
{
"command": "elasticdeveloper.indexTemplate.deploy",
"title": "Deploy index template"
},
{
"command": "elasticdeveloper.indexTemplate.retract",
"title": "Retract index template"
},
{
"command": "elasticdeveloper.indexTemplate.retract.fromExplorer",
"title": "Retract"
},
{
"command": "elasticdeveloper.indexTemplate.compare.fromExplorer",
"title": "Compare"
},
{
"command": "elasticdeveloper.indexTemplate.createFile.fromExplorer",
"title": "Create file"
},
{
"command": "elasticdeveloper.script.retract.fromExplorer",
"title": "Retract"
},
{
"command": "elasticdeveloper.environment.ping",
"title": "Ping environment"
},
{
"command": "elasticdeveloper.environment.ping.fromExplorer",
"title": "Ping environment"
},
{
"command": "elasticdeveloper.environment.setAsTarget",
"title": "Set as target environment"
},
{
"command": "elasticdeveloper.environment.setAsTarget.fromExplorer",
"title": "Set as target environment"
},
{
"command": "elasticdeveloper.environment.openFile.fromExplorer",
"title": "Open file"
},
{
"command": "elasticdeveloper.index.delete.fromExplorer",
"title": "Delete"
},
{
"command": "elasticdeveloper.explorer.refreshNode.fromExplorer",
"title": "Refresh"
},
{
"command": "elasticdeveloper.intelliSense.streamGraph",
"title": "Stream intelliSense graph to Gephi"
},
{
"command": "elasticdeveloper.intelliSense.openEndpointDocumentation.fromEditorContext",
"title": "Open endpoint documentation"
}
],
"menus": {
"explorer/context": [
{
"command": "elasticdeveloper.environment.setAsTarget",
"when": "resourceExtname == .esenv",
"group": "2_workspace"
},
{
"command": "elasticdeveloper.environment.ping",
"when": "resourceExtname == .esenv",
"group": "2_workspace"
},
{
"command": "elasticdeveloper.query.runAll",
"when": "resourceExtname == .esquery",
"group": "2_workspace"
},
{
"command": "elasticdeveloper.indexTemplate.deploy",
"when": "resourceExtname == .esind",
"group": "7_modification"
},
{
"command": "elasticdeveloper.indexTemplate.retract",
"when": "resourceExtname == .esind",
"group": "7_modification"
}
],
"editor/title/context": [],
"editor/title": [],
"editor/context": [
{
"command": "elasticdeveloper.intelliSense.openEndpointDocumentation.fromEditorContext",
"when": "resourceExtname == .esquery",
"group": "navigation"
}
],
"commandPalette": [],
"view/item/context": [
{
"command": "elasticdeveloper.explorer.refreshNode.fromExplorer",
"group": "navigation"
},
{
"command": "elasticdeveloper.environment.ping.fromExplorer",
"when": "viewItem == environment",
"group": "2_workspace"
},
{
"command": "elasticdeveloper.environment.setAsTarget.fromExplorer",
"when": "viewItem == environment",
"group": "2_workspace"
},
{
"command": "elasticdeveloper.environment.openFile.fromExplorer",
"when": "viewItem == environment",
"group": "navigation"
},
{
"command": "elasticdeveloper.index.delete.fromExplorer",
"when": "viewItem == index",
"group": "7_modification"
},
{
"command": "elasticdeveloper.indexTemplate.retract.fromExplorer",
"when": "viewItem == indexTemplate",
"group": "7_modification"
},
{
"command": "elasticdeveloper.script.retract.fromExplorer",
"when": "viewItem == script",
"group": "7_modification"
},
{
"command": "elasticdeveloper.indexTemplate.compare.fromExplorer",
"when": "viewItem == indexTemplate",
"group": "3_compare"
},
{
"command": "elasticdeveloper.indexTemplate.createFile.fromExplorer",
"when": "viewItem == indexTemplate",
"group": "7_modification"
}
]
},
"languages": [
{
"id": "esquery",
"aliases": [
"Elasticsearch Query",
"esquery"
],
"extensions": [
".esquery",
".es"
],
"configuration": "./languages/esquery-configuration.json"
},
{
"id": "esenv",
"aliases": [
"Elasticsearch Environment",
"esenv"
],
"extensions": [
".esenv"
],
"configuration": "./languages/esenv-configuration.json"
},
{
"id": "esind",
"aliases": [
"Elasticsearch Index template",
"esind"
],
"extensions": [
".esind"
],
"configuration": "./languages/esind-configuration.json"
}
],
"grammars": [
{
"language": "esind",
"scopeName": "source.esind",
"path": "./syntaxes/esind.tmLanguage.json"
},
{
"language": "esenv",
"scopeName": "source.esenv",
"path": "./syntaxes/esenv.tmLanguage.json"
},
{
"language": "esquery",
"scopeName": "source.esquery",
"path": "./syntaxes/esquery.tmLanguage.json"
}
],
"keybindings": [
{
"command": "elasticdeveloper.query.runAll.fromTextEditor",
"key": "alt+enter",
"when": "resourceLangId == 'esquery'"
}
],
"views": {
"explorer": [
{
"id": "elasticdeveloper-explorer",
"name": "Elasticsearch Explorer"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.7",
"typescript": "^3.7.2",
"vscode": "^1.1.36"
},
"dependencies": {
"handlebars": "^4.5.3",
"path": "^0.12.7",
"request": "^2.88.0",
"tmp": "^0.1.0"
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。