-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
297 lines (297 loc) · 9.55 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
{
"name": "aya-prover-vscode",
"displayName": "Aya Prover",
"description": "Aya Prover support for VSCode",
"license": "GPL-3.0",
"version": "0.0.6",
"publisher": "aya-prover",
"repository": {
"url": "https://github.com/aya-prover/aya-vscode"
},
"bugs": {
"url": "https://github.com/aya-prover/aya-vscode/issues"
},
"engines": {
"vscode": "^1.89.0"
},
"categories": [
"Snippets",
"Programming Languages"
],
"main": "./out/extension.js",
"activationEvents": [
"onLanguage:aya",
"workspaceContains:aya.json"
],
"contributes": {
"commands": [
{
"command": "aya.lsp.command.restart",
"category": "Aya",
"title": "Restart Aya Language Server"
},
{
"command": "aya.lsp.command.load",
"category": "Aya",
"title": "Load"
}
],
"keybindings": [
{
"command": "aya.lsp.command.load",
"key": "ctrl+l ctrl+l",
"mac": "ctrl+l ctrl+l",
"when": "editorLangId == aya"
},
{
"command": "aya.lsp.command.compute-type",
"key": "ctrl+l ctrl+p",
"mac": "ctrl+l ctrl+p",
"when": "editorLangId == aya"
},
{
"command": "aya.lsp.command.compute-type-nf",
"key": "ctrl+l ctrl+n",
"mac": "ctrl+l ctrl+n",
"when": "editorLangId == aya"
}
],
"configuration": {
"title": "Aya",
"properties": {
"aya.lsp.enabled": {
"type": "boolean",
"default": true,
"description": "[Recommended] Use Language Server to provide syntax highlighting and other interactive features"
},
"aya.lsp.mode": {
"type": "string",
"default": "server",
"enum": [
"server",
"client",
"debug"
],
"description": "The mode to run language server: Server mode (listening and wait for server to connect. Recommended), Client mode (Automatically create server and connect to it) or Debug mode (do not use sockets, use stdin and stdout)"
},
"aya.lsp.host": {
"type": "string",
"default": "localhost",
"description": "The host which the language server listens on."
},
"aya.lsp.port": {
"type": "number",
"default": 11451,
"description": "The port number which the language server listens on."
},
"aya.lsp.path": {
"type": "string",
"description": "Specifies the local path of the aya language server executable or fatjar, mostly used for debugging"
}
}
},
"configurationDefaults": {
"[aya]": {
"editor.semanticHighlighting.enabled": true
}
},
"languages": [
{
"id": "aya",
"aliases": [
"Aya",
"aya",
"Aya Prover",
"aya prover"
],
"extensions": [
".aya"
],
"configuration": "./language-configuration.json"
},
{
"id": "aya-embedded",
"extensions": [
".aya-fenced"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "aya",
"scopeName": "source.minimal-aya",
"path": "./grammars/Aya.tmLanguage"
},
{
"language": "aya-embedded",
"scopeName": "source.aya",
"path": "./grammars/Aya-embedded.tmLanguage"
},
{
"scopeName": "markdown.aya.codeblock",
"path": "./grammars/codeblock.json",
"injectTo": [
"text.html.markdown"
],
"embeddedLanguages": {
"meta.embedded.block.aya": "aya-embedded"
}
}
],
"colors": [
{
"id": "aya.color.FnRef",
"description": "Color for function references",
"defaults": {
"light": "#005DAC",
"dark": "#79c0ff"
}
},
{
"id": "aya.color.FnDef",
"description": "Color for function definitions",
"defaults": {
"light": "#005DAC",
"dark": "#79c0ff"
}
},
{
"id": "aya.color.PrimRef",
"description": "Color for primitive references",
"defaults": {
"light": "#005DAC",
"dark": "#79c0ff"
}
},
{
"id": "aya.color.PrimDef",
"description": "Color for primitive definitions",
"defaults": {
"light": "#005DAC",
"dark": "#79c0ff"
}
},
{
"id": "aya.color.DataRef",
"description": "Color for data references",
"defaults": {
"light": "#218C21",
"dark": "#33d333"
}
},
{
"id": "aya.color.DataDef",
"description": "Color for data definitions",
"defaults": {
"light": "#218C21",
"dark": "#33d333"
}
},
{
"id": "aya.color.ClassRef",
"description": "Color for class references",
"defaults": {
"light": "#218C21",
"dark": "#33d333"
}
},
{
"id": "aya.color.ClassDef",
"description": "Color for class definitions",
"defaults": {
"light": "#218C21",
"dark": "#33d333"
}
},
{
"id": "aya.color.ConRef",
"description": "Color for constructor references",
"defaults": {
"light": "#A021EF",
"dark": "#d2a8ff"
}
},
{
"id": "aya.color.ConDef",
"description": "Color for constructor definitions",
"defaults": {
"light": "#A021EF",
"dark": "#d2a8ff"
}
},
{
"id": "aya.color.FieldRef",
"description": "Color for field references",
"defaults": {
"light": "#A021EF",
"dark": "#d2a8ff"
}
},
{
"id": "aya.color.FieldDef",
"description": "Color for field definitions",
"defaults": {
"light": "#A021EF",
"dark": "#d2a8ff"
}
},
{
"id": "aya.color.ModuleDef",
"description": "Color for module definitions",
"defaults": {
"light": "#8b5d5d",
"dark": "#ffbfbf"
}
},
{
"id": "aya.color.ModuleRef",
"description": "Color for module references",
"defaults": {
"light": "#8b5d5d",
"dark": "#ffbfbf"
}
},
{
"id": "aya.color.GeneralizeDef",
"description": "Color for generalized variable definitions",
"defaults": {
"light": "#8b5d5d",
"dark": "#ffbfbf"
}
},
{
"id": "aya.color.GeneralizeRef",
"description": "Color for generalized variable references",
"defaults": {
"light": "#8b5d5d",
"dark": "#ffbfbf"
}
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.13",
"@types/vscode": "^1.89.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^9.3.0",
"glob": "^10.4.1",
"mocha": "^10.4.0",
"typescript": "^5.4.5",
"vscode-test": "^1.6.1"
},
"dependencies": {
"vscode-languageclient": "^9.0.1"
}
}