-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
143 lines (143 loc) · 3.29 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
{
"name": "vscode-dhall-lsp-server",
"displayName": "Dhall LSP Server",
"description": "An LSP protocol implementation for the Dhall programming language",
"version": "0.0.4",
"publisher": "dhall",
"license": "MIT",
"preview": true,
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"dhall",
"lsp",
"language server"
],
"activationEvents": [
"onLanguage:dhall"
],
"icon": "images/dhall-icon.png",
"galleryBanner": {
"color": "#293845",
"theme": "dark"
},
"homepage": "https://github.com/dhall-lang/vscode-dhall-lsp-server",
"repository": {
"type": "git",
"url": "https://github.com/dhall-lang/vscode-dhall-lsp-server.git"
},
"bugs": {
"url": "https://github.com/dhall-lang/vscode-dhall-lsp-server/issues"
},
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "dhall.lint",
"title": "Lint and format Dhall file",
"category": "dhall"
},
{
"command": "dhall.annotateLet",
"title": "Annotate Let binding with its type",
"category": "dhall"
},
{
"command": "dhall.freezeImport",
"title": "Freeze (refreeze) import",
"category": "dhall"
},
{
"command": "dhall.freezeAllImports",
"title": "Freeze (refreeze) all imports",
"category": "dhall"
}
],
"menus": {
"commandPalette": [
{
"command": "dhall.lint",
"when": "editorLangId == dhall",
"group": "navigation"
}
],
"editor/context": [
{
"command": "dhall.annotateLet",
"when": "editorLangId == dhall"
},
{
"command": "dhall.freezeImport",
"when": "editorLangId == dhall"
}
]
},
"languages": [
{
"id": "dhall",
"extensions": [
".dhall"
]
}
],
"configuration": {
"type": "object",
"title": "Dhall LSP",
"properties": {
"vscode-dhall-lsp-server.executable": {
"scope": "window",
"type": "string",
"default": "",
"markdownDescription": "Path to the `dhall-lsp-server` executable"
},
"vscode-dhall-lsp-server.character-set": {
"scope": "window",
"type": "string",
"default": "",
"markdownDescription": "Character set for `dhall format`: Either `unicode` or `ascii`. If left empty, character set will be inferred."
},
"vscode-dhall-lsp-server.logFile": {
"scope": "window",
"type": "string",
"default": "",
"markdownDescription": "Dhall LSP server log file location Put `[OUTPUT]` to log to the VSCode output."
},
"vscode-dhall-lsp-server.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"dependencies": {
"shell-quote": "~1.6.1",
"vscode-languageclient": "~5.1.1"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"@types/shell-quote": "~1.6.1",
"tar": ">=4.4.18",
"tslint": "^5.8.0",
"typescript": "^3.1.4",
"vscode": "^1.1.34"
}
}