-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.09 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
{
"name": "vscode-ohm",
"description": "Ohm language support for Visual Studio Code",
"version": "0.17.0",
"author": "Novus Nota (https://github.com/novusnota)",
"license": "MIT",
"homepage": "https://github.com/novusnota/vscode-ohm#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/novusnota/vscode-ohm"
},
"bugs": {
"url": "https://github.com/novusnota/vscode-ohm/issues"
},
"publisher": "novusnota",
"displayName": "Ohm Language",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Programming Languages",
"Languages"
],
"contributes": {
"languages": [
{
"id": "ohm",
"aliases": [
"Ohm",
"ohm"
],
"extensions": [
".ohm"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "ohm",
"scopeName": "source.ohm",
"path": "./syntaxes/ohm.tmLanguage.json"
}
]
},
"devDependencies": {
"@vscode/vsce": "^2.32.0"
},
"scripts": {
"vsce": "vsce"
}
}