-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
109 lines (109 loc) · 3.51 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
{
"name": "kdl",
"displayName": "KDL",
"description": "Language support for the KDL Document Language. This extension supports only KDL v2.0.0. Use `kdl-v1` for legacy KDL highlighting.",
"version": "2.1.3",
"license": "Apache-2.0",
"publisher": "kdl-org",
"repository": "https://github.com/kdl-org/vscode-kdl.git",
"main": "./dist/extension.js",
"scripts": {
"pack": "vsce package",
"compile": "npm run check-types && node esbuild.js",
"check-types": "tsc --noEmit",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"vscode:prepublish": "npm run package",
"package": "npm run check-types && node esbuild.js --production",
"publish": "vsce publish"
},
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onStartupFinished"
],
"icon": "KDL_Logo_Only_128x128.png",
"contributes": {
"languages": [
{
"id": "kdl",
"aliases": [
"KDL",
"kdl"
],
"extensions": [
".kdl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "kdl",
"scopeName": "source.kdl",
"path": "./syntaxes/kdl.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "KDL",
"properties": {
"kdl.enable": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Enable/disable the KDL language server"
},
"kdl.command": {
"scope": "resource",
"type": "string",
"description": "LSP server command (defaults to bundled server)"
},
"kdl.argv": {
"scope": "resource",
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "LSP server arguments"
},
"kdl.loglevel": {
"scope": "resource",
"description": "Log level for the KDL LSP server",
"type": "string",
"default": "info",
"enum": [
"off",
"error",
"warn",
"info",
"debug"
],
"enumDescriptions": [
"No server tracing",
"Errors only",
"Warnings and errors",
"Information, warnings, and errors",
"Full debug output"
]
}
}
}
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/vscode": "^1.96.0",
"axios-proxy-builder": "^0.1.2",
"esbuild": "^0.24.2",
"kdl-lsp": "^6.3.2",
"npm-run-all": "^4.1.5",
"vsce": "^1.99.0",
"vscode-languageclient": "^9.0.1"
}
}