-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
147 lines (147 loc) · 4.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "elastic",
"displayName": "Elasticsearch for VSCode",
"description": "Elasticsearch client like Kibana console for vscode",
"version": "1.0.38",
"publisher": "ria",
"icon": "media/elastic.png",
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run package",
"package": "webpack --mode production --devtool hidden-source-map",
"test": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"removeUnusedImports": "tslint --config tslint-imports.json --fix --project .",
"deploy": "cross-env-shell \"vsce publish --yarn --githubBranch $BRANCH --baseContentUrl $REPO_URL --baseImagesUrl $REPO_URL --pat $VSCE_PAT\"",
"postinstall": "husky install",
"updateDep": "npm-check-updates -u"
},
"engines": {
"vscode": "^1.66.0"
},
"galleryBanner": {
"color": "#005571",
"theme": "dark"
},
"categories": [
"Other",
"Programming Languages",
"Snippets"
],
"keywords": [
"Elasticsearch",
"Kibana",
"Elastic",
"Elastic client",
"es"
],
"tags": [
"Elasticsearch",
"Elastic",
"Kibana"
],
"bugs": {
"url": "https://github.com/hsen-dev/vscode-elastic/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/hsen-dev/vscode-elastic.git"
},
"activationEvents": [
"onLanguage:es",
"onCommand:extension.execute",
"onCommand:extension.setHost"
],
"contributes": {
"commands": [
{
"command": "extension.setHost",
"title": "Elasticsearch: Set Host",
"category": "ES"
}
],
"languages": [
{
"id": "es",
"aliases": [
"ElasticSearch",
"es",
"elasticsearch"
],
"extensions": [
"es"
],
"configuration": "./grammar/es.configuration.json"
}
],
"grammars": [
{
"language": "es",
"scopeName": "source.es",
"path": "./grammar/es.tmLanguage"
}
],
"configuration": {
"title": "Elasticsearch",
"properties": {
"elastic.showResultAsDocument": {
"type": "boolean",
"default": true,
"description": "Show result in a new json file, or show in default view"
},
"elastic.host": {
"type": "string",
"default": "http://localhost:9200",
"description": "Elasticsearch Host"
}
}
},
"keybindings": [
{
"key": "ctrl+enter",
"command": "extension.execute",
"when": "editorTextFocus && resourceLangId == 'es'"
},
{
"command": "extension.execute",
"key": "alt+Enter",
"when": "editorTextFocus && resourceLangId==es"
}
]
},
"dependencies": {
"cross-env": "^7.0.3",
"axios": "^0.26.1",
"copy-paste": "^1.3.0",
"json-markup": "^1.1.3",
"jsonc-parser": "^3.0.0",
"mustache": "^4.2.0",
"path": "^0.12.7",
"routington": "^1.0.3",
"semver-closest": "^0.1.2"
},
"devDependencies": {
"@types/copy-paste": "^1.1.30",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.25",
"@types/vscode": "^1.66.0",
"del": "^6.0.0",
"husky": "^7.0.4",
"jsesc": "^3.0.2",
"mocha": "^9.2.2",
"npm-check-updates": "^12.5.9",
"prettier": "^2.6.2",
"require-dir": "^1.2.0",
"ts-loader": "^9.2.8",
"tslib": "^2.3.1",
"tslint": "^6.1.3",
"tslint-etc": "^1.13.10",
"typescript": "^4.6.3",
"vsce": "^2.7.0",
"vscode-test": "^1.6.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
}
}