-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 950 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 950 Bytes
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
{
"name": "modus",
"displayName": "Modus",
"description": "VSCode support for Modusfile",
"version": "0.1.0",
"private": true,
"license": "AGPL-3.0-only",
"author": {
"name": "University College London",
"url": "https://www.ucl.ac.uk/"
},
"repository": {
"type": "git",
"url": "https://github.com/modus-continens/vscode-modus"
},
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "modusfile",
"aliases": ["Modusfile", "modusfile"],
"extensions": [".Modusfile","Modusfile"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "modusfile",
"scopeName": "source.modusfile",
"path": "./syntaxes/modusfile.tmLanguage.json"
}]
}
}