-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.59 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
{
"name": "vscode.c3",
"version": "0.1.0",
"description": "C3 Language support extension for VS Code",
"license": "Apache 2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/jscromao/vscode.c3.git"
},
"bugs": {
"url": "https://github.com/jscromao/vscode.c3/issues"
},
"homepage": "https://github.com/jscromao/vscode.c3#readme",
"keywords": [
"c3",
"c3lang",
"majoreon"
],
"author": "José Romão",
"publisher": "Majoreon",
"categories": [
"Programming Languages",
"Formatters"
],
"engines": {
"vscode": "^1.75.0"
},
"contributes": {
"languages": [
{
"id": "c3",
"aliases": [
"c3",
"C3"
],
"extensions": [
".c3"
],
"configuration": "./assets/language-configuration.json"
}
],
"grammars": [
{
"language": "c3",
"scopeName": "source.c3",
"path": "./assets/c3.tmLanguage.json"
}
],
"configuration": {
"title": "Language Server",
"properties": {
"c3lspclient.lsp.enable": {
"type": "boolean",
"default": true,
"description": "Enables the language server"
},
"c3lspclient.lsp.path": {
"type": "string",
"default": null,
"markdownDescription": "The path to **c3-lsp** binary"
},
"c3lspclient.lsp.debug": {
"type": "boolean",
"default": true,
"markdownDescription": "Enables debug information logging"
},
"c3lspclient.lsp.log.path": {
"type": "string",
"default": "",
"description": "Saves log to specified file"
},
"c3lspclient.lsp.sendCrashReports": {
"type": "boolean",
"default": false,
"markdownDescription": "Sends crash reports to server to help fixing bugs."
},
"c3lspclient.lsp.diagnosticsDelay": {
"type": "integer",
"default": 2000,
"markdownDescription": "Delay calculation of code diagnostics after modifications in source. In milliseconds, default 2000 ms."
},
"c3lspclient.lsp.c3.version": {
"type": "string",
"default": null,
"markdownDescription": "Specify C3 language version. If omited, LSP will use the last version it supports."
},
"c3lspclient.lsp.c3.path": {
"type": "string",
"default": null,
"markdownDescription": "Path to C3C binary. Use it if not defined already in your PATH environment variable or if you want to use a different one."
}
}
}
},
"main": "out/extension",
"devDependencies": {
"@types/node": "^22.7.3",
"@types/vscode": "^1.93.0",
"typescript": "^5.6.2"
},
"dependencies": {
"vscode-languageclient": "^9.0.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
}