-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
65 lines (65 loc) · 1.93 KB
/
extension.json
File metadata and controls
65 lines (65 loc) · 1.93 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
{
"name": "gleeb-lsp-client",
"description": "VS Code extension for Gleeb LSP (Fern UI Framework Language Server)",
"version": "0.1.0",
"engines": {
"vscode": "^1.74.0"
},
"categories": ["Programming Languages"],
"activationEvents": [
"onLanguage:cpp",
"onLanguage:c"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "fern",
"aliases": ["Fern", "fern"],
"extensions": [".fern.cpp", ".fern.c"],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "fern",
"scopeName": "source.fern",
"path": "./syntaxes/fern.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Gleeb LSP Configuration",
"properties": {
"gleeb.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Maximum number of problems to report"
},
"gleeb.enableDiagnostics": {
"type": "boolean",
"default": true,
"description": "Enable diagnostic reporting"
},
"gleeb.enableCompletion": {
"type": "boolean",
"default": true,
"description": "Enable completion suggestions"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"vscode-languageclient": "^8.1.0"
},
"devDependencies": {
"@types/vscode": "^1.74.0",
"@types/node": "^18.0.0",
"typescript": "^4.9.0"
}
}