forked from rescript-lang/rescript-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 879 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 879 Bytes
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
{
"name": "@rescript/language-server",
"description": "LSP server for ReScript",
"version": "1.70.0",
"author": "ReScript Team",
"license": "MIT",
"bin": {
"rescript-language-server": "./out/cli.js"
},
"keywords": [
"ReScript",
"LSP",
"Language Server"
],
"files": [
"out/*",
"analysis_binaries",
"README.md"
],
"engines": {
"node": "*"
},
"homepage": "https://github.com/rescript-lang/rescript-vscode/blob/master/server/README.md",
"repository": {
"type": "git",
"url": "https://github.com/rescript-lang/rescript-vscode",
"directory": "server"
},
"bugs": {
"url": "https://github.com/rescript-lang/rescript-vscode/issues"
},
"dependencies": {
"semver": "^7.7.2",
"vscode-jsonrpc": "^8.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-protocol": "^3.17.1"
}
}