-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.1 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.1 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
{
"name": "kyx-extension",
"description": "VSCode extension for KYX files",
"author": "PROVE LAB",
"license": "GPL-2.0-only",
"version": "1.0.0",
"publisher": "PROVE-Lab",
"engines": {
"vscode": "^1.75.0"
},
"activationEvents": [
"onLanguage:kyx"
],
"main": "./client/out/extension.js",
"contributes": {
"languages": [
{
"id": "kyx",
"aliases": [
"KYX",
"kyx"
],
"extensions": [
".kyx"
],
"configuration": "./client/language-configuration.json"
}
],
"grammars": [
{
"language": "kyx",
"scopeName": "source.kyx",
"path": "./client/syntaxHighlight/kyx-syntax.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w"
},
"devDependencies": {
"@types/node": "^20.5.7",
"@types/vscode": "^1.97.0",
"typescript": "^5.2.2"
},
"dependencies": {
"vscode-languageclient": "^8.1.0",
"vscode-languageserver-textdocument": "^1.0.11",
"vscode-uri": "^3.1.0"
}
}