-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
135 lines (135 loc) · 3.72 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
{
"name": "metamath-zero",
"displayName": "Metamath Zero",
"description": "Language support for Metamath Zero",
"author": "Mario Carneiro",
"publisher": "digama0",
"version": "1.0.4",
"repository": {
"type": "git",
"url": "https://github.com/digama0/mm0"
},
"engines": {
"vscode": "^1.51.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [],
"main": "./build/extension.js",
"contributes": {
"languages": [
{
"id": "metamath-zero",
"aliases": [
"Metamath Zero",
"metamath-zero"
],
"extensions": [
".mm0",
".mm1"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "metamath-zero",
"scopeName": "source.mm0",
"path": "./syntaxes/mm0.json"
}
],
"configuration": {
"type": "object",
"title": "Metamath Zero",
"properties": {
"metamath-zero.executablePath": {
"type": "string",
"default": "mm0-rs",
"description": "Path to the MM0 server."
},
"metamath-zero.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"metamath-zero.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
},
"metamath-zero.elabOn": {
"scope": "window",
"type": "string",
"enum": [
"change",
"save"
],
"default": "change",
"description": "Set the server to elaborate changes either on every change/keystroke, or on save."
},
"metamath-zero.syntaxDocs": {
"scope": "window",
"type": "boolean",
"default": true,
"description": "If true (the default), the server will show syntax documentation on hover."
},
"metamath-zero.logErrors": {
"scope": "window",
"type": "boolean",
"default": true,
"description": "If true (the default), errors will also be sent to the 'output' panel."
},
"metamath-zero.reportUpstreamErrors": {
"scope": "window",
"type": "boolean",
"default": true,
"description": "If true (the default), errors in imported files will be reported on the 'import' command (in addition to the files themselves)."
}
}
},
"commands": [
{
"command": "metamath-zero.restartServer",
"category": "MM0",
"title": "Restart",
"description": "Restart the Language Server."
},
{
"command": "metamath-zero.shutdownServer",
"category": "MM0",
"title": "Shutdown",
"description": "Shut down the Language Server."
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"package": "vsce package -o metamath-zero.vsix",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"vscode-languageclient": "^7.0.0"
},
"devDependencies": {
"@types/node": "^14.14.9",
"@types/vscode": "^1.51.0",
"tslint": "^6.1.3",
"typescript": "^4.1.2",
"vsce": "^2.6.7"
},
"__metadata": {
"id": "4b788446-2267-4925-ae0c-32a1f373bb11",
"publisherDisplayName": "Mario Carneiro",
"publisherId": "47d989d0-9b4b-49c4-b6e4-4b9fb46c0ede"
}
}