-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.06 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.06 KB
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
{
"name": "kql-tools-vscode",
"displayName": "KQL Tool",
"description": "Provides syntax highlighting, customized snippets, and automatic formatting for Kusto Query Language (KQL) in VS Code",
"version": "0.2.5",
"publisher": "fangweij",
"icon": "icon.png",
"license": "MIT",
"homepage": "https://github.com/ESJiang/KQL",
"repository": {
"type": "git",
"url": "https://github.com/ESJiang/KQL"
},
"engines": {
"vscode": "^1.104.0"
},
"categories": [
"Formatters",
"Programming Languages",
"Snippets"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"main": "./out/extension.js",
"browser": "./out/extension.js",
"activationEvents": [
"workspaceContains:**/*.kql"
],
"contributes": {
"languages": [
{
"id": "kql",
"aliases": [
"KQL",
"kql"
],
"extensions": [
".kql"
],
"configuration": "./language-configuration.json"
}
],
"snippets": [
{
"language": "kql",
"path": "./snippets/placeholder.json"
}
],
"grammars": [
{
"language": "kql",
"scopeName": "source.kql",
"path": "./syntaxes/kql.tmLanguage.json"
}
]
},
"scripts": {
"compile": "webpack --mode development",
"watch": "webpack --mode development --watch",
"vscode:prepublish": "npm run package",
"package": "webpack --mode production --devtool hidden-source-map"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": ">=16",
"@types/vscode": "^1.104.0",
"@vscode/test-electron": "^2.5.2",
"ts-loader": "^9.5.4",
"typescript": "^5.0.0",
"webpack": "^5.102.0",
"webpack-cli": "^6.0.1"
}
}