forked from fsprojects/fsharp-language-server
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
140 lines (140 loc) · 4.44 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
{
"name": "fsharp-language-server-updated",
"displayName": "F# Language Server updated",
"description": "F# Language Support using FSharp Compiler Services updated to support net6.0 and fcs 41",
"author": "George Fraser and Eli Dowling",
"license": "MIT",
"icon": "Icon512.png",
"version": "0.1.60",
"preview": false,
"publisher": "faldor20",
"repository": {
"type": "git",
"url": "https://github.com/faldor20/fsharp-language-server"
},
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Programming Languages",
"Linters"
],
"activationEvents": [
"onLanguage:fsharp"
],
"main": "./out/client/extension",
"files": [
"src/FSharpLanguageServer/bin/Release/net6.0/publish/"
],
"contributes": {
"languages": [
{
"id": "fsharp",
"aliases": [
"F#",
"FSharp",
"fsharp"
],
"extensions": [
".fs",
".fsx",
".fsi"
],
"configuration": "./syntaxes/fsharp.configuration.json"
}
],
"grammars": [
{
"language": "fsharp",
"scopeName": "source.fsharp",
"path": "./syntaxes/fsharp.json"
},
{
"language": "fsharp",
"scopeName": "source.fsharp.fsx",
"path": "./syntaxes/fsharp.fsx.json"
},
{
"language": "fsharp",
"scopeName": "source.fsharp.fsi",
"path": "./syntaxes/fsharp.fsi.json"
}
],
"configuration": {
"type": "object",
"title": "FSharp configuration",
"properties": {
"fsharp.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VSCode and the language server."
},
"fsharp.debug.enable": {
"scope": "window",
"type": "boolean",
"default": false,
"description": "Sets whether to use dotnet run to run a debug build of FSlanguageserver"
},
"fsharp.customCommand": {
"scope": "window",
"type": "string",
"default": null,
"description": "Allows you to set a custom command to run the langserver, good for testing custom version \n This must be just the command to run, eg: 'dotnet' put any args in customCommandArgs"
},
"fsharp.customCommandArgs": {
"scope": "window",
"type": "array",
"default": null,
"description": "Allows you to set a custom command args to run the langserver, good for testing custom version or passing special arguments"
}
}
},
"taskDefinitions": [
{
"type": "fsharp.task.test",
"required": [
"projectPath",
"fullyQualifiedName"
],
"properties": {
"projectPath": {
"type": "string"
},
"fullyQualifiedName": {
"type": "string"
}
}
}
],
"breakpoints": [
{
"language": "fsharp"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"extensionDependencies": [
"ms-dotnettools.csharp"
],
"dependencies": {
"vscode-languageclient": "^7.0.0"
},
"devDependencies": {
"@types/vscode": "^1.52.0",
"typescript": "^4.4.4",
"vsce": "^2.3.0",
"@types/node": "^16.11.7",
"vscode-test": "^1.6.1"
}
}