This repository has been archived by the owner on Jan 29, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
80 lines (80 loc) · 2.19 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
{
"name": "@hegel/language-server",
"displayName": "Hegel",
"description": "Language server for Hegel Type Checker",
"version": "0.0.43",
"engines": {
"vscode": "^1.31.0"
},
"categories": [
"Programming Languages",
"Linters"
],
"activationEvents": [
"onLanguage:javascript",
"workspaceContains:**/.hegelrc"
],
"main": "./client/client.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Client configuration",
"properties": {
"hegelLanguageServer.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"hegelLanguageServer.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VSCode and the hegelLanguageServer service."
}
}
},
"languages": [
{
"id": "javascript",
"extensions": [
".js",
".cjs",
".mjs"
]
}
]
},
"scripts": {
"test": "No tests defined yet."
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.2",
"@types/vscode": "1.14.0",
"vscode-test": "1.3.0",
"eslint": "^6.8.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@babel/parser": "^7.9.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-numeric-separator": "^7.7.4",
"@babel/plugin-proposal-optional-catch-binding": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-proposal-private-methods": "^7.7.4",
"@babel/plugin-syntax-bigint": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@hegel/cli": "^0.0.43",
"@hegel/core": "^0.0.43",
"@hegel/typings": "^0.0.41",
"@sweet-monads/iterator": "^2.0.0",
"vscode-languageclient": "^6.1.3",
"vscode-languageserver": "^6.1.1",
"vscode-languageserver-textdocument": "^1.0.1"
}
}