-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.25 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
{
"name": "vscode-elena-lang",
"displayName": "ELENA",
"description": "ELENA Language support for Visual Studio Code",
"icon": "icons/icon.png",
"version": "0.0.1",
"engines": {
"vscode": "^1.89.0"
},
"bugs": {
"url": "https://github.com/ELENA-LANG/vscode-elena-lang/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ELENA-LANG/vscode-elena-lang"
},
"keywords": [
"elena-lang",
"ELENA"
],
"categories": [
"Programming Languages"
],
"l10n": "./l10n",
"contributes": {
"languages": [
{
"id": "elena",
"aliases": [
"ELENA",
"elena"
],
"extensions": [
"l",
"prj"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "elena",
"scopeName": "source.elena-lang",
"path": "./syntaxes/elena.tmLanguage.json"
}
],
"configuration": {
"title": "ELENA",
"properties": {
"elena.executablePath": {
"scope": "resource",
"type": "string",
"description": "Custom path to ELENA compiler executable (`elena-cli`)."
}
}
},
"commands": [
{
"command": "elena.compileSingleFile",
"title": "Compile the current file",
"category": "ELENA"
},
{
"command": "elena.compileProject",
"title": "Compile the current project",
"category": "ELENA"
}
],
"menus": {
"commandPalette": [
{
"command": "elena.compileSingleFile",
"when": "editorLangId == elena"
},
{
"command": "elena.compileProject",
"when": "editorLangId == elena"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"activationEvents": [
"workspaceContains:**/*.l",
"onLanguage:elena",
"onCommand:elena.compileSingleFile",
"onCommand:elena.compileProject"
],
"main": "./dist/main.js",
"devDependencies": {
"@vscode/l10n-dev": "^0.0.18",
"typescript": "^5.4.2",
"vscode": "^1.1.37"
},
"dependencies": {
"@vscode/l10n": "^0.0.10"
}
}