forked from haskell/vscode-haskell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (106 loc) · 3.1 KB
/
package.json
File metadata and controls
108 lines (106 loc) · 3.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
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
{
"name": "vscode-hie-server",
"displayName": "Haskell Language Server",
"description": "Language Server Protocol for Haskell via HIE",
"version": "0.0.1",
"license": "MIT",
"publisher": "alanz",
"engines": {
"vscode": "^1.12.0"
},
"keywords": [
"language", "haskell", "lsp"
],
"homepage": "https://github.com/alanz/vscode-hie-server",
"repository": {
"type": "git",
"url": "https://github.com/alanz/vscode-hie-server.git"
},
"bugs": {
"url": "https://github.com/alanz/vscode-hie-server/issues"
},
"categories": [
"Languages"
],
"icon": "images/HaskellLogo.png",
"activationEvents": [
"onLanguage:haskell",
"onLanguage:literate haskell"
],
"main": "./out/src/extension",
"contributes": {
"languages": [{
"id": "haskell",
"aliases": ["Haskell", "haskell"],
"extensions": [".hs"]
}, {
"id": "cabal",
"aliases": ["cabal", "Cabal"],
"extensions": [
".cabal"
]
}, {
"id": "literate haskell",
"aliases": ["Literate Haskell", "literate Haskell"],
"extensions": [".lhs"]
}],
"configuration": {
"type": "object",
"title": "Example configuration",
"properties": {
"languageServerHaskell.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
}
}
},
"languageServerExample.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VSCode and the languageServerExample service."
},
"commands": [
{
"command": "hare:demote",
"title": "HaRe demote definition"
},
{
"command": "hie.commands.insertType",
"title": "Haskell: Insert type",
"description": "Insert type for the expression"
}
],
"menus": {
"editor/title": [{
"when": "resourceLangId == haskell",
"command": "hare:demote"
}],
"editor/context": [{
"when": "resourceLangId == haskell",
"command": "hare:demote",
"group": "HaRe@1"
}]
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"update-vscode": "node ./node_modules/vscode/bin/install",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/mocha": "^2.2.33",
"@types/node": "^6.0.52",
"typescript": "^2.1.5",
"vscode": "^1.1.0"
},
"dependencies": {
"vscode-languageclient": "^3.2.1"
}
}