-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
114 lines (114 loc) · 2.99 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
{
"name": "cl-lsp",
"displayName": "CL-LSP",
"description": "Language server for Common Lisp",
"author": "Microsoft Corporation",
"license": "MIT",
"version": "0.0.1",
"publisher": "unpublished",
"repository": "https://github.com/cxxxr/cl-lsp",
"engines": {
"vscode": "^1.28.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:lisp"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "lisp.indentLine",
"title": "Lisp: Indent Line"
},
{
"command": "lisp.replStart",
"title": "Lisp: REPL - start"
},
{
"command": "lisp.compileAndLoadFile",
"title": "Lisp: Compile And Load File"
},
{
"command": "lisp.eval",
"title": "Lisp: Evaluate",
"when": "editorTextFocus"
},
{
"command": "lisp.interrupt",
"title": "Lisp: Interrupt"
}
],
"keybindings": [
{
"command": "lisp.eval",
"key": "shift+enter"
},
{
"command": "lisp.interrupt",
"key": "F6"
},
{
"command": "lisp.compileAndLoadFile",
"key": "ctrl+c ctrl+k"
}
],
"configuration": {
"type": "object",
"title": "CL-LSP",
"properties": {
"cl-lsp.serverPath": {
"type": "string",
"default": "cl-lsp",
"description": "The path of the cl-lsp executable"
},
"cl-lsp.serverArguments": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "Arguments to pass to cl-lsp. Argument keys and values should be provided as separate entries in the array e.g. ['--log-level', 'debug']"
},
"cl-lsp.toolchainPath": {
"type": "string",
"default": "",
"description": "(optional) The path of the swift toolchain. By default, cl-lsp uses the toolchain it is installed in."
},
"cl-lsp.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"cl-lsp.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between Visual Studio Code and the CL-LSP service."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"createDevPackage": "npm install && ./node_modules/.bin/vsce package -o ./out/cl-lsp-vscode-dev.vsix"
},
"devDependencies": {
"@types/node": "^8.10.25",
"typescript": "^3.9.3",
"vsce": "^2.15.0",
"vscode": "^1.1.34"
},
"dependencies": {
"vscode-languageclient": "^4.0.0"
}
}