-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
194 lines (194 loc) · 7.2 KB
/
package.json
File metadata and controls
194 lines (194 loc) · 7.2 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
{
"name": "LFortran",
"description": "VSCode extension for the LFortran language server.",
"icon": "images/lfortran.png",
"author": "LCompilers",
"license": "MIT",
"version": "0.0.6",
"repository": {
"type": "git",
"url": "https://github.com/lfortran/lfortran-vscode-client"
},
"publisher": "LCompilers",
"categories": [],
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.63.0"
},
"activationEvents": [
"onLanguage:fortran"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "fortran",
"aliases": [
"lfortran"
],
"extensions": [
".f",
".for",
".f90",
".f95",
".f03"
],
"configuration": "./language-configuration.json"
}
],
"configuration": {
"type": "object",
"title": "LFortran",
"properties": {
"LFortran.openIssueReporterOnError": {
"scope": "window",
"type": "boolean",
"default": false,
"description": "Open a bug report if an internal error occurs."
},
"LFortran.maxNumberOfProblems": {
"scope": "window",
"type": "number",
"default": 100,
"description": "Maximum number of errors and warnings to report."
},
"LFortran.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between the language client and server."
},
"LFortran.compiler.path": {
"scope": "window",
"type": "string",
"default": "lfortran",
"description": "Path to the LFortran compiler executable."
},
"LFortran.compiler.flags": {
"scope": "resource",
"type": "array",
"item": {
"type": "string"
},
"default": [],
"description": "Additional flags to pass to the LFortran compiler."
},
"LFortran.log.path": {
"scope": "window",
"type": "string",
"default": "lfortran-language-server.log",
"description": "Where the log file should be written."
},
"LFortran.log.level": {
"scope": "window",
"type": "string",
"enum": [
"off",
"fatal",
"error",
"warn",
"info",
"debug",
"trace",
"all"
],
"default": "info",
"description": "Lowest level of logs to include in the extension's console output."
},
"LFortran.log.prettyPrint": {
"scope": "window",
"type": "boolean",
"default": true,
"description": "Whether to pretty-print JSON objects and arrays."
},
"LFortran.indentSize": {
"scope": "window",
"type": "number",
"default": 4,
"description": "Number of spaces for each level of indentation."
},
"LFortran.timeoutMs": {
"scope": "window",
"type": "number",
"default": 100,
"description": "Number of milliseconds to await requests from server-to-client."
},
"LFortran.retry.maxAttempts": {
"scope": "window",
"type": "number",
"default": 3,
"description": "Maximum number of times to attempt a request before giving up."
},
"LFortran.retry.minSleepTimeMs": {
"scope": "window",
"type": "number",
"default": 10,
"description": "Minimum number of milliseconds to wait between request attempts."
},
"LFortran.retry.maxSleepTimeMs": {
"scope": "window",
"type": "number",
"default": 300,
"description": "Maximum number of milliseconds to wait between request attempts."
},
"LFortran.execution.strategy": {
"scope": "window",
"type": "string",
"enum": [
"concurrent",
"parallel"
],
"default": "concurrent",
"description": "Whether to handle requests concurrently (single-threaded) or in parallel (multi-threaded). Changes to this setting may require a restart."
},
"LFortran.telemetry.enabled": {
"scope": "window",
"type": "boolean",
"default": false,
"description": "Whether to enable telemetry events (may require a restart)."
},
"LFortran.telemetry.frequencyMs": {
"scope": "window",
"type": "number",
"default": 1000,
"description": "Number of milliseconds to wait between telemetry events."
}
}
}
},
"scripts": {
"postinstall": "cd client && npm install && cd ..",
"compile": "npm run check-types && node esbuild.js",
"check-types": "tsc --noEmit",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"vscode:prepublish": "npm run package",
"lint": "eslint ./client/src",
"package": "npm run check-types && node esbuild.js --production"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.787.0",
"@eslint/js": "^9.24.0",
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"@vscode/vsce": "^3.3.2",
"esbuild": "^0.25.2",
"eslint": "^9.24.0",
"globals": "^16.0.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1"
},
"dependencies": {
"source-map-support": "^0.5.21"
}
}