1 Star 0 Fork 0

小宋/vscode-elasticdeveloper

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.json 7.88 KB
一键复制 编辑 原始数据 按行查看 历史
crasnam 提交于 2021-03-13 03:35 +08:00 . Added support for User-Agent
{
"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"
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ofri/vscode-elasticdeveloper.git
git@gitee.com:ofri/vscode-elasticdeveloper.git
ofri
vscode-elasticdeveloper
vscode-elasticdeveloper
master

搜索帮助