forked from erlang-ls/vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.01 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
{
"name": "erlang-ls",
"displayName": "Erlang LS",
"version": "0.0.21",
"publisher": "erlang-ls",
"description": "The Visual Studio Code Extension for the Erlang Language Server",
"categories": [
"Programming Languages"
],
"icon": "erlang_ls/images/erlang-ls-logo-small.png",
"homepage": "https://erlang-ls.github.io",
"repository": {
"type": "git",
"url": "https://github.com/erlang-ls/vscode.git"
},
"bugs": {
"url": "https://github.com/erlang-ls/vscode/issues"
},
"main": "./client/out/client.js",
"scripts": {
"package": "vsce package",
"test": "echo \"Error: no test specified\" && exit 1",
"vscode:prepublish": "cd client && npm run compile",
"compile": "cd erlang_ls && rebar3 escriptize && cd ../client && npm run compile",
"watch": "cd client && npm run watch",
"postinstall": "cd client && npm install"
},
"author": "erlang_ls",
"license": "Apache-2.0",
"engines": {
"vscode": "^1.43.0"
},
"activationEvents": [
"onLanguage:erlang"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Erlang LS",
"properties": {
"erlang_ls.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the Erlang language server."
},
"erlang_ls.serverPath": {
"scope": "window",
"type": "string",
"default": "",
"description": "Override the default path of the erlang_ls executable with a custom one."
},
"erlang_ls.logPath": {
"scope": "window",
"type": "string",
"default": "",
"description": "Override the default directory erlang_ls logs to."
},
"erlang_ls.logLevel": {
"scope": "window",
"enum": [
"none",
"debug",
"info",
"notice",
"warning",
"error",
"critical",
"alert",
"emergency"
],
"default": "none",
"description": "Log level of LS server"
}
}
},
"languages": [
{
"id": "erlang",
"aliases": [
"Erlang"
],
"extensions": [
".erl",
".hrl",
".src",
".escript",
".config"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "erlang",
"scopeName": "source.erlang",
"path": "./grammar/Erlang.plist"
}
]
},
"files": [
"erlang_ls/_build/default/bin/erlang_ls",
"erlang.tmbundle"
],
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.20.0",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^6.4.0",
"mocha": "^6.2.2",
"typescript": "^3.9.9",
"vsce": "^1.85.0"
}
}