-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.04 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
{
"name": "helios",
"displayName": "Helios",
"publisher": "helios-lang",
"description": "Helios language support for Visual Studio Code",
"icon": "assets/icon.png",
"license": "MIT",
"version": "0.4.0",
"engines": {
"vscode": "^1.72.0"
},
"repository": {
"type": "git",
"url": "https://github.com/helios/vscode-helios.git"
},
"categories": [
"Programming Languages",
"Linters",
"Snippets"
],
"activationEvents": [
"onLanguage:helios"
],
"main": "./out/extension",
"contributes": {
"configuration": [
{
"title": "helios",
"properties": {
"helios.enable": {
"description": "Enables the Helios language server. Requires a restart when changed.",
"type": "boolean",
"default": true
},
"helios.serverPath": {
"description": "Absolute path to the Helios language server executable. Requires a restart when changed.",
"type": "string",
"default": ""
},
"helios.trace.server": {
"description": "Trace communication between VS Code and the Helios language server.",
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off"
},
"helios.disableDiagnostics": {
"description": "Disables highlighting diagnostics (such as errors and warnings) in the editor",
"type": "boolean",
"default": false
}
}
}
],
"commands": [
{
"title": "Helios: Show Syntax Tree",
"command": "helios.showSyntaxTree"
},
{
"title": "Helios: Show Version",
"command": "helios.version"
},
{
"title": "Helios: Restart Server",
"command": "helios.restartServer"
}
],
"grammars": [
{
"language": "helios",
"scopeName": "source.helios",
"path": "./syntaxes/koi.tmLanguage.json"
}
],
"languages": [
{
"id": "helios",
"aliases": [
"Helios",
"helios"
],
"extensions": [
".he"
],
"configuration": "./language-configuration.json"
}
],
"snippets": [
{
"language": "helios",
"path": "./snippets/helios.json"
}
]
},
"scripts": {
"vscode:prepublish": "pnpm build",
"build": "tsc -b",
"lint": "eslint src --ext .js,.ts",
"watch": "tsc -b -w"
},
"dependencies": {
"vscode-languageclient": "^8.0.2",
"which": "^2.0.2"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/node": "^18.8.3",
"@types/vscode": "^1.72.0",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "8.27.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "2.7.1",
"typescript": "^4.8.4"
},
"packageManager": "[email protected]"
}