-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.68 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
{
"name": "mql5-linux",
"displayName": "MQL5 on Linux",
"description": "MQL5 Language Support for Linux",
"version": "0.0.1",
"type": "module",
"publisher": "chaploud",
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"mql5",
"mqh",
"mq5"
],
"icon": "assets/images/mql5-logo.png",
"repository": {
"type": "git",
"url": "https://github.com/chaploud/MQL5-Linux-VSCode-Extension"
},
"contributes": {
"languages": [
{
"id": "mql5",
"aliases": [
"MQL5",
"mql5"
],
"extensions": [
".mq5",
".mqh"
],
"configuration": "./language-configuration.json"
},
{
"id": "mql5-output",
"mimetypes": [
"text/x-code-output"
]
}
],
"activationEvents": [
"onLanguage:mql5"
],
"grammars": [
{
"language": "mql5",
"scopeName": "source.mql5",
"path": "./syntaxes/mql5.tmLanguage.json"
},
{
"language": "mql5-output",
"scopeName": "source.mql5.output",
"path": "./syntaxes/mql5.out.tmLanguage"
}
],
"configuration": {
"type": "object",
"title": "MQL5 on Linux",
"properties": {
"mql5-linux.WINEPREFIX": {
"type": "string",
"default": "${HOME}/.mt5",
"description": "The path to the WINEPREFIX where MetaTrader 5 is installed."
},
"mql5-linux.MT5_directory": {
"type": "string",
"default": "${HOME}/.mt5/drive_c/Program Files/MetaTrader 5",
"description": "The path to the MetaTrader 5 installation directory."
},
"mql5-linux.MetaEditor_path": {
"type": "string",
"default": "${HOME}/.mt5/drive_c/Program Files/MetaTrader 5/MetaEditor64.exe",
"description": "The path to the MetaEditor executable(.exe)."
},
"mql5-linux.delete_compile_log": {
"type": "boolean",
"default": true,
"description": "Delete the compile log after the compilation."
}
}
}
},
"extensionDependencies": [
"ms-vscode.cpptools"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint .",
"format": "prettier --write .",
"preview": "vite preview"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/node": "^22.12.0",
"@types/vscode": "^1.96.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vite": "^6.0.11"
}
}