-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
147 lines (147 loc) · 5.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
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
{
"name": "LFortran",
"description": "VSCode extension for the LFortran language server.",
"icon": "images/lfortran.png",
"author": "LCompilers",
"license": "MIT",
"version": "0.0.4",
"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": {
"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."
}
}
}
},
"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.758.0",
"@eslint/js": "^9.21.0",
"@types/node": "^22.13.9",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"@vscode/vsce": "^3.2.2",
"esbuild": "^0.25.0",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0"
},
"dependencies": {
"source-map-support": "^0.5.21"
}
}