-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.76 KB
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
{
"name": "rl-lsp",
"publisher": "rulebooklanguage",
"description": "A language server for the rulebook language",
"author": "Massimo Fioravanti",
"license": "MIT",
"version": "1.0.3",
"repository": {
"type": "git",
"url": "git@github.com:drblallo/rl-lsp.git"
},
"categories": [],
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.75.0"
},
"activationEvents": [
"onLanguage:rulebook"
],
"main": "./client/out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Example configuration",
"properties": {
"rl-lsp.rlcLSPPath": {
"scope": "resource",
"type": "string",
"default": "rlc-lsp",
"description": "Path of rlc-lsp"
},
"rl-lsp.rlcArgs": {
"scope": "resource",
"type": "string",
"default": "",
"description": "arguments to pass to rlc-lsp"
},
"rl-lsp.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"rl-lsp.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 -b",
"watch": "tsc -b -w",
"lint": "eslint ./client/src --ext .ts,.tsx",
"postinstall": "cd client && npm install && cd .."
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^18.19.3",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"typescript": "^5.3.3"
}
}